Browse Source

place trees

Bastien Sevajol 6 years ago
parent
commit
0a659faf62
1 changed files with 3 additions and 1 deletions
  1. 3 1
      opencombat/gui/base.py

+ 3 - 1
opencombat/gui/base.py View File

167
         self.ground_layer.set_view(
167
         self.ground_layer.set_view(
168
             0, 0, self.ground_layer.px_width, self.ground_layer.px_height,
168
             0, 0, self.ground_layer.px_width, self.ground_layer.px_height,
169
         )
169
         )
170
+        # TODO BS 2018-06-14: We have to move this layer to be correct.
171
+        # but some trees disapears ... wtf ?
170
         self.top_layer.set_view(
172
         self.top_layer.set_view(
171
-            0, 0, self.top_layer.px_width, self.top_layer.px_height,
173
+            28, 28, self.top_layer.px_width, self.top_layer.px_height,
172
         )
174
         )
173
 
175
 
174
 
176