I did texture in c4d and input it into unity how do you fix it?
How do u do button witch go to another page?
Im doing a map and it has buttons it goes to a page but what software do i need?
I did texture in c4d and input it into unity how do you fix it?
How do u do button witch go to another page?
Im doing a map and it has buttons it goes to a page but what software do i need?
Hi, welcome to the forum!
Do you need to display a button that takes the player to another scene when clicked? If so, you should use GUI.Button. You can use this to open a new scene by calling Application.LoadLevel:-
var buttonTexture: Texture2D;
if (GUI.Button(new Rect(10, 10, 50, 50), buttonTexture)) {
Application.LoadLevel("NewLevel");
}