Exemplo n.º 1
0
 protected bool GameHasGameObject(string name)
 {
     return(MsgDispatcher.HasGameObject(name));
 }
Exemplo n.º 2
0
 protected Transform GetChild(string name)
 {
     return(MsgDispatcher.GetChild(name, transform));
 }
Exemplo n.º 3
0
 protected void UnRegisterGameObject(string name)
 {
     MsgDispatcher.UnRegisterObj(name);
 }
Exemplo n.º 4
0
 protected T[] GetComponentsInChildren <T>(string name)
 {
     return(MsgDispatcher.GetComponentsInChildren <T>(name));
 }
Exemplo n.º 5
0
 protected T GetComponent <T>(string name)
 {
     return(MsgDispatcher.GetComponent <T>(name));
 }
Exemplo n.º 6
0
 protected GameObject GetGameObject(string name)
 {
     return(MsgDispatcher.GetGameObject(name));
 }
Exemplo n.º 7
0
 protected void RegisterObj()
 {
     MsgDispatcher.RegisterGameObject(gameObject.name, gameObject);
 }