Quantcast
Channel: Questions in topic: "up"
Viewing all articles
Browse latest Browse all 104

I want my snake to move continuosly if i press...up it should move up until i press another button....like the original snake game

$
0
0
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

Viewing all articles
Browse latest Browse all 104

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>