set up a 2d array of vector3’s
Vector3[,] flowField;
but whenever I try to set it
flowField = new Vector3[flowFieldSize,flowFieldSize];
I get a "cannot implicitly convert type ‘float’ to ‘int’ meaning that the vector 3’s are vector 3’s holding integers… how do I change them to accept floats instead?