Hello,
I think I have found a bug, I check if my localisation key exists, the if statement below reports false but the debug still prints the correct value?
if (Localization.Exists(testString)
{
myLabel.text = Localization.Get(testString);
}
else
{
Debug.Log(Localization.Get(testString);
}
Any thoughts on what could be going wrong?