Kizspy | Question: 1
(Choose 1 answer)
What does this script do?
using UnityEngine;
public class MoveObject: MonoBehaviour {
void Update() {
transform.position += new Vector3(1f* Time.deltaTime, 0, 0);
A. Moves the object right continuously
B. Rotates the object
C. Scales the object
D. Freezes the object