Script코드 확인script를 처음 생성했을 때 코드이다.using System.Collections;using System.Collections.Generic;using UnityEngine;public class Rtan : MonoBehaviour{ // Start is called before the first frame update void Start() { } // Update is called once per frame void Update() { }} 좌우로 이동할 경우 Rtan오브젝트 Transform의 Position x값을 계속 변화시켜야 한다.코드를 보면 Start는 딱 한번만 호출이되고,Update의 경우 ..