コード using System; using System.Collections; using System.Collections.Generic; using UnityEngine; public class NewBehaviourScript : MonoBehaviour { // Start is called before the first frame update void Start() { float value = Random.Range(-1, 1); print(value); } public Transform Target; public Transform agent; void Update() { } }
↑を実行すると あいまいな表現とでます 意味が分かりません
どうすればいいですか?
「あいまいな表現とでます」の部分がエラーメッセージの話なら、そのメッセージそのものを質問文に書きましょう。
回答2件
あなたの回答
tips
プレビュー