How can I get the string from firebase remote config guys ?

I have this code to load the levels

var levelNameFile = new List() {“level1”,“level2”,“level3”,…};

How can I use firebase remoteconfig to get it on firebase ?
Firebase only support one string per value …
So hope you guys reply me :smile: Thank a lot

Anyone :frowning:

Hello,
I think you can change your list of strings by a simple string containing all of your scenes names splitted by a character (a comma should do the trick) and then it should work.

Example for the string variable:
var levelNames = "level1,level2,level3";

I hope it can helps you :slight_smile: