Assets/Scripts/Player_Get.cs(42,49): error CS0619: `UnityEngine.GameObject.rigidbody' is obsolete: `Property rigidbody has been deprecated. Use GetComponent<Rigidbody>() instead. (UnityUpgradable)'
대략 해석하자면 `UnityEngine.GameObject.rigidbody' 퇴물이다. rigidbody 속성은 중요도가 떨어져서 사라졌다. 대신에 GetComponent<Rigidbody>() 사용해라
변경 전
this.gameObject.rigidbody.AddForce (0, -50f, 0);
변경 후
this.gameObject.GetComponent<Rigidbody> ().AddForce (0, -50f, 0);
반응형
'응용프로그램' 카테고리의 다른 글
Unity5 빌드에러 bundle identifier has not been set up correctly (0) | 2016.07.23 |
---|---|
The variable animator of Player_Ctrl has not been assigned. You probably need to assign the animator variable of the ... script in the inspector (0) | 2016.07.21 |
동영상 제작 기본원칙(내가 겪은 것) (0) | 2015.11.23 |
클리핑 마스크를 활용하여 도형에 사진 넣기! (0) | 2015.06.13 |
이미지를 팝아트로 만들기(흑백) (0) | 2015.06.13 |