
* 겪고 있는 문제 상황을 최대한 자세하게 작성해주세요.
* 문제 해결을 위해 어떤 시도를 해보았는지 구체적으로 함께 알려주세요.
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class Rtan : MonoBehaviour
{
// Start is called before the first frame update
void Start()
{
Debug.Log("안녕");
}
// Update is called once per frame
void Update()
{
Transform.position += Vector3.right;
}
}
이렇게 진행중에 있는데
오류 CS0120 static이 아닌 필드, 메서드 또는 속성 'Transform.position'에 개체 참조가 필요합니다.
라고 뜨며 더 진행되지 않습니다
