我想做的事情:让相机跟随马里奥这样的角色
我收到此错误:
Assets / Camera_System.cs(22,65):错误CS0120:访问非静态成员`UnityEngine.GameObject.transform'时需要对象引用
代码:
void Start () {
player = GameObject.FindGameObjectWithTag ("Player");
}
void LateUpdate () {
float x = Mathf.Clamp (player.transform.position.x, xMin, xMax);
float y = Mathf.Clamp (player.transform.position.y, yMin, yMax);
GameObject.transform.position = new Vector3 (x, y,GameObject.transform.position.z);
}
答案 0 :(得分:1)
只需输入
transform.position
或
gameobject.transform.postion
小写字母gameobject
GameObject.Transform.Position
transform
不是类GameObject
的静态成员,您正尝试将非静态成员作为静态成员访问