Is it possible to enable the usage of Polish characters such as ą, ę, ł, ó, ż, ź, ć, ń, ś in e.g. GUI elements or strings?
1 Answer
1Unity supports full unicode fonts, so yes. Just make sure you are using a font that contains those characters and look up the unicode for those characters.
Hello there, could you run the game and check during runtime in the inspector tab if the prefab is still set at runtime? I mean, just to be sure. You could also debug the prefab right before instantiating it: Debug.Log("Myprefab:"+prefab); Then Assign the newly created object to a variable an check if it is null: GameObject myNewTree = Instantiate(prefab, loadTreePosition, loadTreeRotation); Debug.Log("Is my tree null? "+(myNewTree == null));
– Anox