-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgameoflife.kv
executable file
·41 lines (40 loc) · 1.22 KB
/
gameoflife.kv
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
<Juggler>:
GameScreen:
MasterBox:
BoxLayout:
size_hint: 1, 0.8
pos: root.x, 0.1*root.height
Scatter:
do_rotation: False
translation_touches: 3
auto_bring_to_front: False
scale_min: 1.0
scale_max: 3.0
TileGrid:
id: grid
size: self.parent.size
BoxLayout:
size_hint: 1, 0.1
pos: root.x, 0.9*root.height
orientation: 'horizontal'
PenButton:
StampButton:
ChooseStampButton:
SettingsButton:
BoxLayout:
orientation: 'horizontal'
pos: root.x, root.y
size_hint: 1, 0.1
PlayPauseButton:
id: play_pause_button
NextButton:
RestoreButton:
SaveButton:
RandomButton:
ClearButton:
StampScreen:
StampViewer:
id: stamp_select_viewer
SaveStampScreen:
id: save_stamp_screen
AboutMeScreen: