https://dkrevel.com/makegame-beginner/make-2d-action-ground/このサイトの
目次<PlayerでGroundCheckを読みこもう>ができません
publicな変数がインスペクターに表示されないせいでGroundCheckをその変数に入れることができません
誰か解決案をくれるとありがたいです。
エラーはここです
<コンソール>
Assets\Player.cs(9,12): error CS0246: The type or namespace name 'GroundCheck' could not be found (are you missing a using directive or an assembly reference?)
c#
1using System.Collections; 2using System.Collections.Generic; 3using UnityEngine; 4 5public class Player : MonoBehaviour 6{ 7 //インスペクターで設定する 8 public float speed; 9 public GroundCheck ground; //new 10 11 //プライベート変数 12 private Animator anim = null; 13 private Rigidbody2D rb = null; 14 private bool isGround = false; //new 15 16 void Start() 17 { 18 //コンポーネントのインスタンスを捕まえる 19 anim = GetComponent<Animator>(); 20 rb = GetComponent<Rigidbody2D>(); 21 } 22 23 void Update() 24 { 25 //接地判定を得る 26 isGround = ground.IsGround(); //new 27 28 //キー入力されたら行動する 29 float horizontalKey = Input.GetAxis("Horizontal"); 30 float xSpeed = 0.0f; 31 if (horizontalKey > 0) 32 { 33 transform.localScale = new Vector3(1, 1, 1); 34 anim.SetBool("run", true); 35 xSpeed = speed; 36 } 37 else if (horizontalKey < 0) 38 { 39 transform.localScale = new Vector3(-1, 1, 1); 40 anim.SetBool("run", true); 41 xSpeed = -speed; 42 } 43 else 44 { 45 anim.SetBool("run", false); 46 xSpeed = 0.0f; 47 } 48 rb.velocity = new Vector2(xSpeed, rb.velocity.y); 49 } 50}
ソースコードを載せてください
回答1件
あなたの回答
tips
プレビュー