Summary
character unable to move when populating map of vector3’s in OnBegin. when line is commented out map works fine
Please select what you are reporting on:
Creative
What Type of Bug are you experiencing?
Live Edit
Steps to Reproduce
- create prop
- add verse tag
- place prop in level.
- in a device get props by tag and use GetTransform().Translation as a key for a map.
- start game and character is just frozen in place
Expected Result
a map full of vector3’s to be created
Observed Result
character is unable to move. then after some time kicked back to lobby saying network connection lost.
Platform(s)
PC
Additional Notes
OnBegin():void={
Sleep(0.2);
# Get SpawnLocation Actors.
TaggedActors:= FindCreativeObjectsWithTag(WorldLocTag{});
for (TaggedActor: TaggedActors, worldLoc:= creative_prop[TaggedActor]) {
Loc:= worldLoc.GetTransform().Translation;
if (set copperNodeSpawns[Loc] = 0) {Print(“Set”);}
}
}