how to move an object in unity 3d with code code example
Example 1: hot to move pobject unity
using UnityEngine;
using System.Collections;
public class ExampleClass : MonoBehaviour
{
void Update()
{
transform.Translate(Vector3.forward * Time.deltaTime);
transform.Translate(Vector3.up * Time.deltaTime, Space.World);
}
}
Example 2: how to move an object in unity using c#
using UnityEngine; using System.Collections; public class NewBehaviourScript: MonoBehaviour { void Start (){ Transform.Position.X = 2; Debug.Log("Test"); } }