fix: exception thrown when opening prefab override ui (#1141)

This commit is contained in:
nekobako 2024-09-15 09:51:43 +09:00 committed by GitHub
parent fed6a22d72
commit f4d80b857d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 4 additions and 4 deletions

View File

@ -19,7 +19,7 @@ namespace nadena.dev.modular_avatar.core.editor.ShapeChanger
protected override void OnInnerInspectorGUI()
{
throw new NotImplementedException();
EditorGUILayout.HelpBox("Unable to show override changes", MessageType.Info);
}
protected override VisualElement CreateInnerInspectorGUI()

View File

@ -23,7 +23,7 @@ namespace nadena.dev.modular_avatar.core.editor
protected override void OnInnerInspectorGUI()
{
throw new NotImplementedException();
EditorGUILayout.HelpBox("Unable to show override changes", MessageType.Info);
}
protected override VisualElement CreateInnerInspectorGUI()

View File

@ -21,7 +21,7 @@ namespace nadena.dev.modular_avatar.core.editor.ShapeChanger
protected override void OnInnerInspectorGUI()
{
throw new NotImplementedException();
EditorGUILayout.HelpBox("Unable to show override changes", MessageType.Info);
}
protected override VisualElement CreateInnerInspectorGUI()

View File

@ -23,7 +23,7 @@ namespace nadena.dev.modular_avatar.core.editor.ShapeChanger
protected override void OnInnerInspectorGUI()
{
throw new NotImplementedException();
EditorGUILayout.HelpBox("Unable to show override changes", MessageType.Info);
}
protected override VisualElement CreateInnerInspectorGUI()