public class Vector3Float {
public float x, y, z;
}
i need a Vector3Float that holds the X Y and Z of my camera (in one variable). I really feel stupid asking this question, but ive just never needed to make my own data type before until now
public class Vector3Float {
public float x, y, z;
}
i need a Vector3Float that holds the X Y and Z of my camera (in one variable). I really feel stupid asking this question, but ive just never needed to make my own data type before until now