init() public method

public init ( ) : void
return void
Exemplo n.º 1
0
 public void init()
 {
     Debug.Log ("Root created");
     root = ScriptableObject.CreateInstance<SecuenceNode>();
     Debug.Log (root);
     root.init ();
     DontDestroyOnLoad(this);
 }
Exemplo n.º 2
0
 public void init()
 {
     Debug.Log("Root created");
     root = ScriptableObject.CreateInstance <SecuenceNode>();
     Debug.Log(root);
     root.init();
     DontDestroyOnLoad(this);
 }
Exemplo n.º 3
0
    public SecuenceNode addNewChild()
    {
        SecuenceNode node = ScriptableObject.CreateInstance <SecuenceNode>();

        node.init();
        this.childs.Add(node);
        return(node);
    }