Procházet zdrojové kódy

Added _start() method to gbe.nodes.Node class. It's the complement to _pause()

master
Bryan Miller před 6 roky
rodič
revize
78633e3152
1 změnil soubory, kde provedl 6 přidání a 0 odebrání
  1. +6
    -0
      game/gbe/nodes.py

+ 6
- 0
game/gbe/nodes.py Zobrazit soubor

@@ -205,6 +205,12 @@ class Node:
for c in self._NODE_DATA["children"]:
c._pause()

def _start(self):
if hasattr(self, "on_start"):
self.on_start()
for c in self._NODE_DATA["children"]:
c._start()

def _update(self, dt):
if hasattr(self, "on_update"):
self.on_update(dt)

Načítá se…
Zrušit
Uložit