You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
536 B
C#
18 lines
536 B
C#
using UnityEngine;
|
|
|
|
public class RocketMovement : MonoBehaviour
|
|
{
|
|
public float speed = 5f;
|
|
float newHorPos= 0f;
|
|
float newVerPos= 0f;
|
|
|
|
void Update()
|
|
{
|
|
// Move the rocket upward
|
|
newHorPos = Mathf.Lerp(newHorPos ,Input.GetAxis("Horizontal"),Time.deltaTime);
|
|
newVerPos = Mathf.Lerp(newVerPos, Input.GetAxis("Vertical"),Time.deltaTime);
|
|
transform.position=new Vector3(newHorPos, transform.position.y, -newVerPos);
|
|
transform.Translate(Vector3.up * speed * Time.deltaTime );
|
|
}
|
|
}
|