ActionManager は Node のアクションを管理するシングルトンオブジェクトです。 メインの Update ループは Director.Update() で呼び出されます。 [詳細]
Public メソッド | |
void | AddAction (ActionBase action, Node target) |
ActionManager にアクションを追加します。 | |
void | RemoveAllActions () |
全てのアクションを削除します。 | |
void | RemoveAllActionsFromTarget (Node target) |
引数 'target' のノードを含む、全てのアクションを削除します。 | |
void | RemoveAction (ActionBase action) |
ひとつのアクションを削除します。 | |
void | RemoveActionByTag (int tag, Node target) |
引数 tag からアクションを見つけ、削除します。 | |
ActionBase | GetActionByTag (int tag, Node target, int ith=0) |
引数 tag からアクションを取得します。 | |
int | NumRunningActions (Node target) |
引数'target'のノードを含む、アクションの数をカウントします。 | |
int | NumRunningActions () |
実行中のアクションの総数をカウントします。 | |
void | Dump () |
デバッグ情報を出力します。(将来変更される可能性があります) | |
プロパティ | |
static ActionManager | Instance [get] |
ActionManager のシングルトン。 |
ActionManager は Node のアクションを管理するシングルトンオブジェクトです。 メインの Update ループは Director.Update() で呼び出されます。