前提・実現したいこと
パドルを左右に矢印キーで動かせるプログラムを書いて、実行しようとしたら以下のようなエラーメッセージ二つがコンソールに表示されて、実行出来ませんでした。解決策が分からないので、このエラーメッセージの解決方法を教えてください。お願いします!プログラムも一番下に貼ります
発生している問題・エラーメッセージ
一個目Assets\scriptt\paddlescript.cs(16,9): error CS0120: An object reference is required for the non-static field, method, or property 'Transform.position' 二個目Assets\scriptt\paddlescript.cs(17,19): error CS0120: An object reference is required for the non-static field, method, or property 'Transform.position'
該当のソースコード
C#言語
試したこと
エラーメッセージについて調べたり、見直しもしてみました。
補足情報(FW/ツールのバージョンなど)
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class paddlescript : MonoBehaviour
{
// Start is called before the first frame update
void Start()
{
} // Update is called once per frame void Update() { Transform.position += new Vector3(Input.GetAxis("Horizontal") * Time.deltaTime, 0f, 0f); Debug.Log(transform.position.x); }
}
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/03/27 07:18
2020/03/27 07:21 編集
2020/03/27 07:22