Saturday 29 September 2018

Unity Project

https://drive.google.com/open?id=1N7m3K-XV69v_9xCh4REkuBwm9V9wH0D0

Code

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class SphereController : MonoBehaviour {
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);
}}

Unity Development Link

https://drive.google.com/file/d/1SCrNjrQxP13iTGwqetxNkb9mMstFyiK-/view?usp=sharing