using UnityEngine;
using System.Collections;
public class Snake : MonoBehaviour {
private Transform myTransform;
public int SnakeSpeed = 10;
GameObject Snakei;
// Use this for initialization
void Start () {
myTransform = transform;
}
// Update is called once per frame
void Update () {
myTransform.Translate(Vector3.right * SnakeSpeed * Input.GetAxis("Horizontal")* Time.deltaTime);
myTransform.Translate(Vector3.up * SnakeSpeed * Input.GetAxis("Vertical")* Time.deltaTime);
}
void OnTriggerEnter(Collider coll)
{
if(coll.gameObject.CompareTag ("Maze"))
{
Destroy (this.gameObject);
}
}
}
It successfully moves but without any continuos motion....any help would be appreciated
↧