Пример #1
0
 public Vector4Save(Vector3Save vector)
 {
     this.x = vector.x;
     this.y = vector.y;
     this.z = vector.z;
     this.w = 0f;
 }
Пример #2
0
 public Vector2Save(Vector3Save vector)
 {
     this.x = vector.x;
     this.y = vector.y;
 }