ソースを参照

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

master
Bryan Miller 6年前
コミット
78633e3152
1個のファイルの変更6行の追加0行の削除
  1. +6
    -0
      game/gbe/nodes.py

+ 6
- 0
game/gbe/nodes.py ファイルの表示

@@ -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)

読み込み中…
キャンセル
保存