Example #1
0
 public PassLink(PassNode nodeFrom0, PassNode nodeTo0, PassGlobal global0)
 {
     global   = global0;
     nodeFrom = nodeFrom0;
     nodeTo   = nodeTo0;
     CreateGo();
 }
Example #2
0
 // Use this for initialization
 void Start()
 {
     global = new PassGlobal();
     InvokeRepeating("ShowFps", 1, 1);
     InvokeRepeating("Pump", 2, 3f);
 }
Example #3
0
 public PassNode(Vector3 pos0, PassGlobal global0)
 {
     global = global0;
     CreateGo(pos0);
 }