Hello ev! These days I was working to automate and randomize the spawning of the interiors in the rooms of my map. (to avoid infinite branches and manual operations). I created several dictionaries, to make my bp manager transmit to the bp interior spawner, directly a dictionary that says, for each unique room, which is the reference static mesh comp, which instanced static mesh has been chosen for the spawn and which socket name to attach it to. The problem is that when I iterate on this data to spawn the isms, the first ism that is created, is then moved together with those that are created subsequently, in another room of the same type, therefore that shares the socket name; while I should have each spawned ism that maintains its position even when the code continues for the next spawns. With my old code, not automated, this never happened.
And it’s strange because I’m iterating individually each room, with a set timer to avoid problems with the variables.
As I set up the bp, during this line of code, no dictionary is manipulated/modified elsewhere. So I have already ruled out a data overwrite.
What could be the problem in your opinion? What could I try to do to solve it?
Thanks a lot to anyone who will answer!