유니티의 Script 에서 주로 사용되는 함수에 대한 페이지 1. 이동 transform.Translate(this.speed, 0, 0); using System.Collections; using System.Collections.Generic; using UnityEngine; public class CarController : MonoBehaviour { float speed = 0; Vector2 startPos; // Start is called before the first frame update void Start() { } // Update is called once per frame void Update() { if(Input.GetMouseButtonDown(0)) { this.star..