Sunday, February 3, 2019

Cube Move script for unity 3d by allunityscripts

                                              Cube Move   


                                                       This script is use for cube movement     
cube move scripts in unity



using UnityEngine;
using System.Collections;

public class CubeMove : MonoBehaviour {

    public float speed;

    private Rigidbody rb;

    void Start ()
    {
        rb = GetComponent<Rigidbody>();
    }

    void FixedUpdate ()
    {
        float moveHorizontal = Input.GetAxis ("Horizontal");
        float moveVertical = Input.GetAxis ("Vertical");

        Vector3 movement = new Vector3 (moveHorizontal, 0.0f, moveVertical);

        rb.AddForce (movement * speed);
    }
}

No comments:

Post a Comment