Hi , i am rather enjoying Unity and i like learning it and cant wait to be pro !
I am getting through the tutorials on the site quite well, although i may of discovered
a bug of some sort. I am on part 10 of the survival shooter and it is only going to be a splash
sort of a splash image.
Any ideas? is this this a bug or is there something that i have done wrong, it is only a ui image with rect transform, canvas renderer and image (script). The same bug is in the roguelike tutorial also im not sure what is causing this.
Ah OK I think what is happening here is you have 2 canvases active at the same time. Unity’s UI system bugs out when 2 or more canvases are active at the same time. Instead use panels to get your desired effect. A useful way to sort this out if you absolutely MUST have 2 or more canvases in your scene is to create a script that says: when one canvas is active, disable the others. That way the image wont bug out but you get to keep both in the scene.
Yes i only have the 1 canvas, as it turns out, i simply cleared the score text and then it was ok ^^
Once i cleared it the bug sort of went away and when i put the text back again and it was ok, i also changed the order of the ui elements