コード例 #1
0
ファイル: Vector4Save.cs プロジェクト: Long18/Runner_game
 public Vector4Save(Vector3Save vector)
 {
     this.x = vector.x;
     this.y = vector.y;
     this.z = vector.z;
     this.w = 0f;
 }
コード例 #2
0
ファイル: Vector2Save.cs プロジェクト: Long18/Runner_game
 public Vector2Save(Vector3Save vector)
 {
     this.x = vector.x;
     this.y = vector.y;
 }