Legacy Documentation: Version 4.6(go to latest)
Language: English
  • C#
  • JS
  • Boo

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

GUITexture.pixelInset

Switch to Manual
public var pixelInset: Rect;

Description

Pixel 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);