International Corporate Trainer | Technical Consultant | Data Scientist | IoT Solution Architect | Blockchain Architect | Industry 4.0 Architect
Sunday, 30 September 2018
Saturday, 29 September 2018
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);
}}
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
Subscribe to:
Posts (Atom)