unityでのエラー修正
unityでのゲーム制作途中のエラー修正で混乱してます。
C#
1Assets\PlayerController.cs(10,30):error CS1056:Unexpected character '?'
と
Assets\PlayerController.cs(10,43):error CS1056:Unexpected character '?'
です。 プログラムは using System.Collections; using System.Collections.Generic using UnityEngine; public class PlayerController: MonoBehaviour { Rigitbody2D rigit2D; float jumpPower = 100.0f; void Start() { rigit2D = Getcomponent;<Rigitbody2D;> } //Update is called once per frame void Update() { if (Input.GetKeyDown(Key.code.space)) { this.rigit2D.AddForce(transform.up * jumpPower); } } } です。 初心者でよくわからないので有識者の方アドバイスお願いします! https://udemy.benesse.co.jp/design/3d/unity-2d.html 参考サイトです
何か参考としたWebサイト、書籍等あれば追記していただければと思います。