1234567891011121314151617181920212223242526272829303132 |
-
- import random
-
- from sandbox.tile.gui.animation import ANIMATION_WALK
- from sandbox.tile.gui.animation import ANIMATION_CRAWL
- from synergine2_cocos2d.animation import Animate
- from synergine2_cocos2d.gui import TMXGui
- from synergine2_cocos2d.interaction import MoveActorInteraction
-
-
- class Game(TMXGui):
- def before_run(self) -> None:
- self.layer_manager.interaction_manager.register(MoveActorInteraction, self.layer_manager)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
|