4 namespace droid.Runtime.Utilities.Structs {
7 [SerializeField]
public int _X;
8 [SerializeField]
public int _Y;
9 [SerializeField]
public int _Z;
12 this._X = Mathf.RoundToInt(vec3.x);
13 this._Y = Mathf.RoundToInt(vec3.y);
14 this._Z = Mathf.RoundToInt(vec3.z);
30 public int X {
get {
return this._X; }
set { this._X = value; } }
32 public int Y {
get {
return this._Y; }
set { this._Y = value; } }
34 public int Z {
get {
return this._Z; }
set { this._Z = value; } }
IntVector3(int x, int y, int z)
static IntVector3 operator+(IntVector3 a, IntVector3 b)