Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Bug / Crash  NullReferenceException Blueprint Edit
#9
I resolved the issue by changing the

Code:
currentProperty.OnSceneRepaint();


to


Code:
if (currentProperty != null)
                {
                    // property OnSceneRepaint
                    currentProperty.OnSceneRepaint();
                }


You can find the line around 335 at ObiActorBlueprintEditor.cs
Reply


Messages In This Thread
RE: NullReferenceException Blueprint Edit - by dramatemple - 24-04-2024, 04:23 PM