error CS1503: Argument 1: cannot convert from 'double' to 'float' code example
Example: error cs1503 argument 3 cannot convert from 'double' to 'float'
By default, if you just type the number -2.5 in your code,
Compiler will think, it's a 'Double'.
But Vector3() takes three float arguments,
so you need to tell it you want a 'float'.
You do this with the letter 'f' after your number: -2.5f