how can I Make singleton?

Hello,

I was working on implementing a Singleton in Verse following the guide provided in the link(https://forums.unrealengine.com/t/i-came-up-with-a-way-to-make-singletons-in-verse/1139453/6), using tags for development. However, after the 32.0 update, “GetCreativeObjectsWithTag” was deprecated, and I’m now searching for an alternative method.

I’ve tried using “FindCreativeObjectsWithTag,” but it doesn’t seem to retrieve values within a regular function. Could you guide me on another approach? Is there a way to get an array of all “creative_device” objects placed on the island?

Thank you!

3 Likes

Unfortunately, you do notice that little italicized word now, as in “For now”. Apparently now is done. I assume scene graph is the future. Not sure we have all the pieces for that yet though.

1 Like

I’m very disappointed as well. I hope Epic didn’t remove the feature without providing any alternatives.

2 Likes

You need to call FindCreativeObjectsWithTag on a creative_device, if you need to call that method inside your singleton, then you might need to also add a singleton creative_device too