Przeglądaj źródła

State machine now listens for a 'SCENECHANGE' event.

master
Bryan Miller 6 lat temu
rodzic
commit
bf9fee74e8
1 zmienionych plików z 6 dodań i 2 usunięć
  1. +6
    -2
      game/gbe/statemachine.py

+ 6
- 2
game/gbe/statemachine.py Wyświetl plik

@@ -23,7 +23,11 @@ _TIME = Time()

class StateMachine:
def __init__(self):
pass
Events.listen("SCENECHANGE", self.on_scenechange)

def on_scenechange(self, event, params):
if "scene" in params and "hold" in params:
self.activate_node(params["scene"], params["hold"])

def has_node(self, name):
"""
@@ -65,7 +69,7 @@ class StateMachine:
_TIME.reset()


def _relaseActive(self, hold_previous):
def _releaseActive(self, hold_previous):
global _ACTIVE_STATE, _HOLD_STATE
a = _ACTIVE_STATE
a._pause()

Ładowanie…
Anuluj
Zapisz