Skip to main content

Release Notes - Mobile 2.117

Comments

6 comments

  • Lucas Avelino

    Cool man

    0
  • wartycoonfan2

    I’m trying to place the new assets but they don’t show up in where I place them, it won’t let me place them :( pls fix this

    0
  • Dennis Afutu

    Okay 

    0
  • Dennis Afutu

    Okay 

    0
  • Toqeer Ahmad (Meer)

    FIRE BATTLE 2

     

    0
  • YAHYA YAHYA

    using UnityEngine;

    public class CarController : MonoBehaviour

    {

        public float speed = 10f;

        public float turnSpeed = 50f;

        void Update()

        {

            float move = Input.GetAxis("Vertical") * speed * Time.deltaTime;

            float turn = Input.GetAxis("Horizontal") * turnSpeed * Time.deltaTime;

            transform.Translate(0, 0, move);

            transform.Rotate(0, turn, 0);

        }

    }

    0

Please sign in to leave a comment.

Powered by Zendesk