forked from sanskarchand/bone-animator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconst.py
More file actions
30 lines (25 loc) · 684 Bytes
/
const.py
File metadata and controls
30 lines (25 loc) · 684 Bytes
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
#SCREEN_DIM = (640, 480)
#PYGAME_DIM = (640, 400)
CANVAS_DIM = (640, 480)
TOTAL_DIM = (800, 600)
RIGHT_CTRL_RECT_PARAMS = (
CANVAS_DIM[0], # left
0, # top
TOTAL_DIM[0] - CANVAS_DIM[0], # width
TOTAL_DIM[1] # height
)
EXPORT_RECT = (20, 20, 320, 420)
FPS = 60
DIVIDER_X = 150
#BGCOLOR = (123, 150, 158)
BGCOLOR = (0xdd, 0xdd, 0xdd)
GREY = (155, 155, 155)
RED = (141, 30, 43)
COL_GIMB_ROT = (20, 169, 59)
COL_GIMB_ROT_SEL = (33, 219, 75)
COL_GIMB_MOVE = (234, 167, 67)
COL_GIMB_MOVE_SEL = (234, 215, 67)
COL_BUT_NORMAL = (31, 112, 148)
COL_BUT_HOVER = (74, 157, 195)
COL_BUT_OUTLINE = (74, 195, 154)
COL_FONT = (16, 16, 16)