0
このコードで何が問題になっていますか?これは何を意味するのですかCS0120 C#静的でないフィールド、メソッド、またはプロパティにオブジェクト参照が必要です
オブジェクトを左から右に移動したいだけです。そこには良い方法がありますか?
using UnityEngine;
using System.Collections;
public class test : MonoBehaviour
{
public float speed = 5f;
// Use this for initialization
void Start()
{
// no-op
}
//Update is called once per frame
void Update()
{
Transform.Translate(speed,0f,0f);
}
}
を私はそれが動作するように取得するように見えるカント – jackoridd7