ISM SPAWNED CHANGING POSITION

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! :woozy_face:

I just noticed doing some further testing, that what was creating this problem was the way I was handling the output pin of the “spawn actor from class” node where obviously the bp was the interior spawner, but the value in return was a "get (value from dictionary) " referring to the instanced static mesh assigned for that room in advance in another bp. For some reason, this automation was creating that spawn problem, where all the isms created were overlapping each other and changing transforms between executes. So I currently added a manual branch for quick debugging, where if the current value from the dictionary, equals a specific ism in the bp, in return get (that ism) and add instance, if false, removes the room from the array and if the array is not empty, re-executes the code.



So my question now is: am I forced to switch between automation and manual controls or is there something I can do to fix that auto-spawn issue?