Ejemplo n.º 1
0
 public void SetNodePosition(ModelBone bone)
 {
     this.node.LinkWith(bone, LinkType.Position | LinkType.Rotation);
     this.bb = null;
 }
Ejemplo n.º 2
0
 public void SetBoundingBox(BoundingBox bb)
 {
     this.node.LinkWith(null);
     this.bb = bb;
 }
Ejemplo n.º 3
0
 public void SetNodePosition(ModelBone bone)
 {
     this.node.LinkWith(bone, LinkType.Position | LinkType.Rotation);
     this.bb = null;
 }
Ejemplo n.º 4
0
        public void Reset()
        {
            content.Reset();
            entities.Clear();
            models.Clear();
            materials.Entries.Clear();
            bb = null;

            entities.Add(node);

            if (OnReset != null) { OnReset(this, new ResetEventArgs()); }
        }
Ejemplo n.º 5
0
 public void SetBoundingBox(BoundingBox bb)
 {
     this.node.LinkWith(null);
     this.bb = bb;
 }