Vector3.rightstatic var right : Vector3DescriptionShorthand for writing Vector3(1, 0, 0)
JavaScripts
using UnityEngine;
using System.Collections; public class example : MonoBehaviour { void Awake() { transform.position += Vector3.right * Time.deltaTime; } } import UnityEngine
import System.Collections class example(MonoBehaviour): def Awake(): transform.position += (Vector3.right * Time.deltaTime) |
