diff options
author | Florian Jung <flo@windfisch.org> | 2015-08-26 22:51:28 +0200 |
---|---|---|
committer | Florian Jung <flo@windfisch.org> | 2015-08-26 22:51:28 +0200 |
commit | ada18916c2ad68f7f2ac2d69ca51ac2e9a8b2df4 (patch) | |
tree | 8f5c668d7fc857759662b4192cbb4e72f0c23f6a /gui.py | |
parent | be59b002fb2650bf17f58420fa93b0f8bef74a25 (diff) |
draw cell.parent
Diffstat (limited to 'gui.py')
-rw-r--r-- | gui.py | 13 |
1 files changed, 13 insertions, 0 deletions
@@ -273,6 +273,19 @@ def draw_markers(): for i in [0, 1, 2]: draw_marker(marker[i], colors[i], marker_updated[i]) +def draw_debug(): + for cell in c.world.cells.values(): + parent = None + try: + parent = cell.parent + except AttributeError: + pass + + if parent != None: + draw_line(cell.pos, parent.pos,(255,0,0)) + draw_circle(parent.pos,3,(255,0,0),True) + + def draw_frame(): global screen, movement, zoom, screensize, input, bot_input, marker, marker_updated, running |