Skip to content

Instantly share code, notes, and snippets.

@buddypia
Created August 30, 2013 06:58
Show Gist options
  • Save buddypia/6386977 to your computer and use it in GitHub Desktop.
Save buddypia/6386977 to your computer and use it in GitHub Desktop.
【Unity】GUITextureを真ん中で表示する方法2つ ref: http://qiita.com/shori0917/items/2f302bb8badb5e6d5ffe
void Start () {
background = GetComponent<GUITexture>().texture;
}
void OnGUI(){
GUI.DrawTexture(new Rect(Screen.width / 2 - 128, Screen.height / 2 - 128, background.width,
background.width), background);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment