hey, probably its a silly question, but i wanted to compare 2 vector3 variables, and obviously i tried " if(thisVector3 > otherVector3) do something;" but it does not work, i can use something like
if (thisVector3.x > otherVector3.x)do something
if (thisVector3.y > otherVector3.y)do something
if (thisVector3.z > otherVector3.z)do something
but in case i have to do it again, but it does not look organized. any ideas are much apreciated. thank you very much.
thisVector3.sqrMagnitude > otherVector3.sqrMagnitude