Hi all, I have just completed the first couple of tutorials in my new series and thought I would share them with you here. This one is around localisation and takes a simple approach to making localisation easy in your games. I really hope it is of some help to someone out there
repeated for each language in your code, you should solve that, then if you’re already there, you could use some trickery, to get rid of the whole thing, eg. like this:
if language is english then
curDialog = englishDialog
curInterface = englishInterface
...
else if language is spanish then
...
The you can just simply change every Resouces.Load(“Languages/” + englishInterface) to (“Languages/” + curInteface)
Now that you point it out, its so obvious thank you, thats a really helpful suggestion and I shall change it to reflect that
Thanks for taking the time to read it and comment!
Thanks! Thats super helpful, and I have now just removed a block of totally unecessary code from the game Every day is a school day I’ll now update my tutorial