Example #1
0
 public void addTo(QNode parent)
 {
     this.transform.parent = parent.trans;
     this.parent           = parent;
 }
Example #2
0
 public void addTo(QNode parent)
 {
     this.transform.parent = parent.trans;
     this.parent = parent;
 }
Example #3
0
 public void addChild(QNode child)
 {
     child.parent       = this;
     child.trans.parent = this.trans;
 }
Example #4
0
 public void addChild(QNode child)
 {
     child.parent = this;
     child.trans.parent = this.trans;
 }