Ejemplo n.º 1
0
 public Vector4Save(Vector3Save vector)
 {
     this.x = vector.x;
     this.y = vector.y;
     this.z = vector.z;
     this.w = 0f;
 }
Ejemplo n.º 2
0
 public Vector2Save(Vector3Save vector)
 {
     this.x = vector.x;
     this.y = vector.y;
 }