mirror of
https://github.com/ConjureETS/PixelSphinx.git
synced 2026-03-24 02:20:58 +00:00
rotation asteroids et corrigé astronaute qui se tient pas debout (avant de se faire pogner par un asteroid). Reste a faire reset de son orientation quand passe état stun a idle)
This commit is contained in:
parent
2344057072
commit
ba7adf42ae
@ -6,6 +6,9 @@ public class Asteroid : MonoBehaviour
|
|||||||
Vector3 center;
|
Vector3 center;
|
||||||
public float speed;
|
public float speed;
|
||||||
public float step;
|
public float step;
|
||||||
|
public float rotationSpeed = 1.0f;
|
||||||
|
public float rotationDirection = 1.0f;
|
||||||
|
public bool RandomRotationSpeed = true;
|
||||||
|
|
||||||
// Use this for initialization
|
// Use this for initialization
|
||||||
public void Start()
|
public void Start()
|
||||||
@ -13,7 +16,14 @@ public class Asteroid : MonoBehaviour
|
|||||||
speed = Random.Range(1.8F, 3F);
|
speed = Random.Range(1.8F, 3F);
|
||||||
// print(speed);
|
// print(speed);
|
||||||
center = new Vector3(0, 0);
|
center = new Vector3(0, 0);
|
||||||
}
|
|
||||||
|
|
||||||
|
if (RandomRotationSpeed)
|
||||||
|
rotationSpeed = 10 * UnityEngine.Random.Range(0.25f, 5f);
|
||||||
|
|
||||||
|
rotationDirection = (Mathf.Floor(UnityEngine.Random.Range(0.0f, 1.99f))*2 - 1);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
// Update is called once per frame
|
// Update is called once per frame
|
||||||
public void Update () {
|
public void Update () {
|
||||||
@ -25,6 +35,11 @@ public class Asteroid : MonoBehaviour
|
|||||||
{
|
{
|
||||||
step = speed * Time.deltaTime;
|
step = speed * Time.deltaTime;
|
||||||
this.transform.position = Vector3.MoveTowards(transform.position, center, step);
|
this.transform.position = Vector3.MoveTowards(transform.position, center, step);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
this.transform.Rotate(new Vector3(0, 0, 1.0f), rotationDirection * rotationSpeed * Time.deltaTime);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
//collider must be set as "isTrigger" in unity for this method to work
|
//collider must be set as "isTrigger" in unity for this method to work
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user