Hello, i’m using UMG to create some inventory slots ( i have a base slot widget and two others that derive from that) and although the compilation on the editor is fine, on the output window of visual i’m getting the following error:
On the create widget i connect the wires and he compiles fine, but when i restart the editor the wires are disconnected. The documentation tells that that error is when the metadata of the property to expose on spawn is different than the flag. How do i fix this?
Are you creating a C++ project or blueprints? Additionally, does this occur in a blank project with no additional content or is it limited to one project?
Hello, i’m using a C++ project. I’ve created a complex inventory system from the first release of UMG, so i’m not sure if it’s from starting from such an early build that might create incompatibilities with the current UMG version. I doubt i will be able to reproduce it on a more simple project If possible i would like to know more about that error and how can i set both the metadata and the flag back to the same value so i stop having this error.
I was looking over your post and it sounds like you may have a circular dependency issue. Is it possible that something in the widget with the disconnected wires is referencing another blueprint that is in turn referencing the broken blueprint?
I have other blueprints that derive from Base Slot and Single Slot that don’t have that problem, so my guess is that for some reason some of the child are pointing a broken / older version and others are pointing to the right one. Is there a way to clean that without redoing the entire widget (which i already did multiple times and ended up with the same or a similar problem on the same or on another widget, so it’s worth what it’s worth)?
I was hoping it wouldn’t come down to that, because those are the base widgets for my entire inventory system and redoing them will take a lot of time, but i guess i don’t have a choice Thanks for the feedback