スクリプトのどこが間違っているか教えてください。
スクリプトを以下のように書きました。
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class PlayerMovement : MonoBehaviour
{
void Start() { } void Update() { transform.positon += new Vector3(0.1f, 0, 0); }
}
しかし以下のようなエラーが出ます。
Assets\PlayerMovement.cs(16,19): error CS1061: 'Transform' does not contain a definition for 'positon' and no accessible extension method 'positon' accepting a first argument of type 'Transform' could be found (are you missing a using directive or an assembly reference?)
transformがpositionの定義を含まないわけはないと思うのですが。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
退会済みユーザー
2020/07/08 09:38
2020/07/08 10:02