The property associated cannot be found

I’m doing a save and load system for some options, on both the error of the title appears.

Here is a image of the script.

Please help me because I’ve been searching for a solution to this for some hours.

you do compile the blueprints associated at variables

16 Likes

thx

Thanks ,I spent almost a hour working on it.

This happened in my project when I created a c++ class extending UDeveloperSettings, with a UProperty TSubclassOf.
UMyWidgetClass was residing in a separate module from the UDeveloperSettings.
If this happens to you, it’s trying to load the widget before it’s components are loaded.
Fix: Change TSubclassOf to TSoftClassPtr

thanks that helped me a lot i just needed to compile the parent blueprint First.