Skip to content

Instantly share code, notes, and snippets.

@buddypia
Created August 30, 2013 07:23
Show Gist options
  • Save buddypia/6387131 to your computer and use it in GitHub Desktop.
Save buddypia/6387131 to your computer and use it in GitHub Desktop.
【Unity】GUITextureの画像を真ん中に表示する2つ方法 ref: http://qiita.com/shori0917/items/f32f9fcbce165c18e623
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