Add notes on next steps for hex map.

This commit is contained in:
Dorian 2017-07-27 18:03:18 -04:00
parent f2dc566667
commit 78a371890c
1 changed files with 3 additions and 0 deletions

View File

@ -10,6 +10,7 @@ VERTICAL_BUFFER = 0.8
class HexMap(Widget): class HexMap(Widget):
# TODO: Incorporate design into main application.
coords_display = ObjectProperty(None) coords_display = ObjectProperty(None)
def __init__(self, **kwargs): def __init__(self, **kwargs):
@ -59,6 +60,8 @@ class HexMap(Widget):
def update_coords(self, touch_event): def update_coords(self, touch_event):
self.coords_display.text = "Touched at {}".format(touch_event.spos) self.coords_display.text = "Touched at {}".format(touch_event.spos)
# TODO: Add in finding of hexes by what position found at touch event.
# TODO: May need a buffer around "untouchable" regions"
return True return True