I’m trying to make it so that my GUI text stays in place no matter what size phone you place it on. I want it to be in the bottom of the screen centered on any phone it may get put on.
This is what I have:
function OnGUI(){
GUI.skin = myskin;
GUI.Label (Rect (310, 450, 200, 30), "Life: " +lives);
GUI.Label (Rect (100, 450, 200, 30), "Enemys Remaining: " +enemy);
}