예제 #1
0
 public ModelM(Model model, Vector3 at, Vector3 rotation, Vector3 scale, BlendTypes bt)
 {
     this.models    = model;
     this.ats       = at;
     this.rotations = rotation;
     this.scales    = scale;
     this.alpha     = 1f;
     this.color     = new Vector3(1f, 1f, 1f);
     this.blend     = bt;
 }
예제 #2
0
 public ModelM(Model model, BlendTypes bt)
 {
     this.models    = model;
     this.ats       = Vector3.Zero;
     this.rotations = new Vector3(0.0f, 0.0f, 0.0f);
     this.scales    = new Vector3(1f, 1f, 1f);
     this.alpha     = 1f;
     this.color     = new Vector3(1f, 1f, 1f);
     this.blend     = bt;
 }