Created
December 28, 2014 05:54
-
-
Save kazuooooo/7f56ca2976b374fc4c23 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#pragma strict | |
//make GUI | |
function OnGUI(){ | |
//make button | |
if(GUI.Button(Rect(Screen.width/2-100,200,200,30),"GAME START")) | |
{ | |
//change sscene | |
Application.LoadLevel("main"); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment