I am trying to make a road that will spawn itself as my player runs along it. Currently I have this:
var spawnThis : Transform;
function OnTriggerEnter (other : Collider)
{
Instantiate (spawnThis, transform.position, transform.rotation);
Destroy (gameObject);
}
it's the Instantiate line I am having trouble with, it just spawns it in the same place as the first object was, I want it to spawn at the next position.x integer. I was hoping something like this:
Instantiate (spawnThis, transform.position.x ++, transform.rotation);
except that returns this error:
> No appropriate version of> 'UnityEngine.Object.Instantiate' for> the argument list> '(UnityEngine.Transform, float,> UnityEngine.Quaternion)' was found.
How can I go about this?
↧