I’m creating a Vector5 class variable(mostly to learn how), anyway when I try to set my Vector5 to a new vector5(2,5,8,5,6) for example it says that It doesn’t have a constructor that contains 5 arguments. here’s what I’ve got.
[System.Serializable]
public class Vector5{
public float x;
public float y;
public float z;
public float w;
public float a;
}