I have multiple streaming levels and to save game progress I need to get the streaming level names. I can’t figure out what nodes to connect where for me to get the names
Fig 1 - Get Streaming Level to SET LevelName (String Variable in SaveGame) - gives nothing
You have to put the name of the level you want info on into the ‘get streaming level’ node. It returns a reference given a name. The node isn’t there to tell you which level is currently streaming. ( I know it looks like it does ).
Thing is, you already streamed the level in, so you should have a list of levels that are currently streamed.
A good way to do it would just be an array of name. When you stream, add an index, when you unload a level, use the ‘remove’ node.
Thanks for the answer, much appreciated - how do I get the name out of the array into my savegame (zero experience using arrays - can you suggest a good tutorial?).