Unity Editor 에러 로그 및 해결책 모음

vvhustle's coding note·2022년 11월 22일
0

Err msg: CommandInvokationFailure: Gradle build failed.
-> unity, JDK, SDK 버전 변경 등 캐시가 안 맞을 때 발생합니다. 유저/.gradle/cache 에서 모두 제거합니다.

Err msg: Your Android setup is not correct. See Settings in Facebook menu.
-> openSSL 및 JDK 설치가 잘 되어있는지, 환경 변수로 등록되어있는지 확인합니다.

Err msg: Could not load signature of Firebase.Crashlytics.Editor.iOsPostBuild:SetupGUIDForSymbol
-> firebase crashlytics dll이 iOS 플랫폼을 필요로해서 발생합니다.

Err msg: UnityEditor.Graphs.Edge Error

NullReferenceException: Object reference not set to an instance of an object
UnityEditor.Graphs.Edge.WakeUp () (at <c2131046ab274e33b6e52bc4c292a245>:0)
UnityEditor.Graphs.Graph.DoWakeUpEdges (System.Collections.Generic.List`1[T] inEdges, System.Collections.Generic.List`1[T] ok, System.Collections.Generic.List`1[T] error, System.Boolean inEdgesUsedToBeValid) (at <c2131046ab274e33b6e52bc4c292a245>:0)
UnityEditor.Graphs.Graph.WakeUpEdges (System.Boolean clearSlotEdges) (at <c2131046ab274e33b6e52bc4c292a245>:0)
UnityEditor.Graphs.Graph.WakeUp (System.Boolean force) (at <c2131046ab274e33b6e52bc4c292a245>:0)
UnityEditor.Graphs.Graph.WakeUp () (at <c2131046ab274e33b6e52bc4c292a245>:0)
UnityEditor.Graphs.Graph.OnEnable () (at <c2131046ab274e33b6e52bc4c292a245>:0)

-> 유니티 프로그램 자체의 버그로 UnityEditor.Graphs.dll에서 발생한 에러, 유니티 에디터를 종료 후 재시작하면 해결됩니다.

Err msg: UnityEditor.PropertyEditor.DrawEditors Error
-> PlayMode로 진입할때, 인스펙터가 두 개이상 열려있을때 발생, 인스펙터를 하나만 남기거나, Window > Layouts > Default로 초기화합니다.

0개의 댓글