From 78a371890ca801c77a056965165b2022619e2d76 Mon Sep 17 00:00:00 2001 From: Dorian Pula Date: Thu, 27 Jul 2017 18:03:18 -0400 Subject: [PATCH] Add notes on next steps for hex map. --- render_test/main.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/render_test/main.py b/render_test/main.py index 9c5763a..ced73d8 100644 --- a/render_test/main.py +++ b/render_test/main.py @@ -10,6 +10,7 @@ VERTICAL_BUFFER = 0.8 class HexMap(Widget): + # TODO: Incorporate design into main application. coords_display = ObjectProperty(None) def __init__(self, **kwargs): @@ -59,6 +60,8 @@ class HexMap(Widget): def update_coords(self, touch_event): 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