#Receiving list of structures from BP

1 messages · Page 1 of 1 (latest)

brazen geyser
#

I know that there's a function to get the structure ID's tied to the world, but I was wondering if there was a way to obtain every ID of structure files contained within the BP structures folder?

ebon plume
#
for (const id of world.structureManager.getWorldStructureIds()) {
  const structure = world.structureManager.get(id);
}```
brazen geyser
#

Yes that's for the world ids, Im asking for the ids form the structures folder. I've already tried using this function and it didn't return my structure folder stuff :(

tight peak
#

did you find?how to receive structure lists form folder@brazen geyser

brazen geyser
#

No, so i just made an array of the file names instead

tight peak
#

what do you mean?
can you show

ebon plume