I’ve been trying to figure out how to change a unity object’s position and rotation without much luck. A quick example would be much appreciated!
Vector3 position = cam.transform.position;
plane.transform.position = position;
For whatever reason this creates a second plane instead of just changing the plane variable I already have.