Hi all
Still trying to get my head around the “new” operator. With reference to the 2 versions of code that achieve the same thing, why is there no need for the “new” operator in the second line of code?
transform.position += new Vector3(-speed * Time.deltaTime,0,0);
transform.position += Vector3.left * speed * Time.deltaTime;
Thanks