Select your preferred scripting language. All code snippets will be displayed in this language.
Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.
ClosePixel inset used for pixel adjustments for size and position.
You can set the transform.localScale to Vector3.zero in order to make the GUI texture always the same pixel size.
transform.position = Vector3.zero; transform.localScale = Vector3.zero; guiTexture.pixelInset = Rect (50, 50, 100, 100);
using UnityEngine; using System.Collections; public class ExampleClass : MonoBehaviour { void Example() { transform.position = Vector3.zero; transform.localScale = Vector3.zero; guiTexture.pixelInset = new Rect(50, 50, 100, 100); } }
import UnityEngine import System.Collections public class ExampleClass(MonoBehaviour): def Example() as void: transform.position = Vector3.zero transform.localScale = Vector3.zero guiTexture.pixelInset = Rect(50, 50, 100, 100)