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 Thank a lot
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 Thank a lot
Anyone
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