doric-engine/strategygame.kv

35 lines
903 B
Plaintext
Raw Normal View History

2016-06-04 18:08:18 -04:00
#:import math math
2016-06-05 02:04:53 -04:00
##:include debug.kv
2016-06-04 14:59:40 -04:00
<StrategyGame>:
id: _game
2016-06-04 15:06:41 -04:00
main_map: _main_map
status: _stats
2016-11-15 19:54:46 -05:00
map_rows: 5
map_cols: 5
2016-06-04 14:59:40 -04:00
BoxLayout:
orientation: 'horizontal'
# FloatLayout:
BoxLayout:
2016-06-04 15:06:41 -04:00
id: _main_map
game: _game
2016-06-04 14:59:40 -04:00
size_hint: .75, 1
orientation: 'vertical'
2016-06-04 14:59:40 -04:00
BoxLayout:
orientation: 'vertical'
size_hint: .25, 1
Label:
id: _stats
2016-06-04 14:59:40 -04:00
text: 'status'
size_hint: 1, .66
canvas.before:
Color:
rgba: .49, .49, .81, 1
Rectangle:
pos: _stats.pos
size: _stats.size
Button:
2016-06-04 14:59:40 -04:00
text: 'mini-map'
size_hint: 1, .33
background_color: .75, .71, .99, 1