Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


contentOffset

Pixel offset to apply to the content of this GUIstyle.
Read time 1 minuteLast updated 5 days ago

Definition

  • Type: Property
  • Namespace: UnityEngine
  • Assembly: UnityEngine.IMGUIModule
public Vector2 contentOffset { get; set; }

Examples

using UnityEngine;public class Example : MonoBehaviour{ // Prints the value of contentOffset. void OnGUI() { Debug.Log(GUI.skin.button.contentOffset); }}