added pausing to night and moved reset tool after other tools
[tabakrolletjie.git] / tabakrolletjie / scenes / day.py
index 968f241c97d32247611749e88713612fcc6af8af..17690e254da011e93429cf9c213291a3f83bdf3b 100644 (file)
@@ -79,11 +79,9 @@ class DayScene(BaseScene):
 
     def create_tools(self, gamestate):
         tools = []
-        x, y, step = 0, SCREEN_SIZE[1] - 40, 50
 
-        tools.append(ImageButton(
-            '32', 'default_cursor.png', name='reset tool', pos=(x, y)))
-        x += step
+        x, y, step = 50, SCREEN_SIZE[1] - 40, 50
+        
         tools.append(ImageButton('32', 'seed.png', name='seed', pos=(x, y)))
         x += step
 
@@ -96,8 +94,10 @@ class DayScene(BaseScene):
             x += step
 
         tools.append(ImageButton(
-            '32', 'night.png', name='start night',
-            pos=(SCREEN_SIZE[0] - 100, y)))
+            '32', 'default_cursor.png', name='reset tool', pos=(x, y)))
+
+        tools.append(ImageButton(
+            '32', 'night.png', name='start night', pos=(SCREEN_SIZE[0] - 100, y)))
         tools.append(ImageButton(
             '32', 'exit.png', name='exit', pos=(SCREEN_SIZE[0] - 50, y)))
         return tools
@@ -205,7 +205,7 @@ class DayScene(BaseScene):
             elif ev.key == pgl.K_e:
                 from .night import NightScene
                 SceneChangeEvent.post(scene=NightScene())
-            elif ev.key == pgl.K_SPACE:
+            elif ev.key == pgl.K_SPACE and DEBUG:
                 self._paused = not self._paused
         elif ev.type == pgl.MOUSEBUTTONDOWN:
             if ev.button == 1: