-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAppAttributes.py
More file actions
41 lines (36 loc) · 1.34 KB
/
AppAttributes.py
File metadata and controls
41 lines (36 loc) · 1.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#===============================================================================
# @License:
# This example file is public domain. See ADDENDUM section in LICENSE.
# You may do the following things with this file without restrictions or conditions:
# 1. Modify it.
# 2. Remove or modify this section to your liking.
# 3. Redistribute it under any licensing terms that you wish.
# 4. Make copyright claims to derivative works of this file.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
#===============================================================================
import os, AppCore
from Qt import QtCore, QtGui
Data = {
'ProjectPath' : '',
'GraphXPos' : 0,
'GraphYPos' : 0,
'FPS' : 23.98,
'ResolutionWidth' : 800,
'ResolutionHeight' : 600,
'NodeGraph-GraphX' : 0,
'NodeGraph-GraphY' : 0,
'NodeGraph-GraphXS' : 0,
'NodeGraph-GraphYS' : 0,
'ViewerWidget2D-GraphX' : 0,
'ViewerWidget2D-GraphY' : 0,
'ViewerWidget2D-GraphXS' : 0,
'ViewerWidget2D-GraphYS' : 0,
'TimelineWidget-GraphX' : 0,
'TimelineWidget-GraphY' : 0,
'TimelineWidget-GraphXS' : 0,
'TimelineWidget-GraphYS' : 0,
}