Hi guys, first big sorry for my bad english, im working on it ;)
I want to ask you something. I want to move some objects in my game, its simple, there are asteroids which move from up to down (create up and destroy down). But they speed is static, for example 5, so if for example I catch box for speed I want to rise this speed from 5 to example 20 and after some time its will be again 5.
My code for speed is:
static var asteroidspeed : float = -5;
function Update () {
rigidbody.velocity = transform.forward * asteroidspeed;
}
and there is code for their creation:
var spawnPosition : Vector3 = new Vector3 (Random.Range (-spawnValues.x, spawnValues.x), spawnValues.y, spawnValues.z);
var spawnRotation : Quaternion = Quaternion.identity;
Instantiate (hazard, spawnPosition, spawnRotation);
but the problem is, when I change speed from Start() to Update() because if there is Start() asteroids which are already exist dont react on changing speed but asteroids which will be create react on it so I changed it on Update(), but asteroids are acting weird. They rotate around their axis and they dont move from up to down directly but they create something like circle or I dont know :D Simple it looks very strange
↧