Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


onActive

Rendering settings for when the element is turned on and pressed down.
Read time 1 minuteLast updated 6 days ago

Definition

  • Type: Property
  • Namespace: UnityEngine
  • Assembly: UnityEngine.IMGUIModule
public GUIStyleState onActive { get; set; }

Examples

using UnityEngine;public class Example : MonoBehaviour{ // Sets the text color of button to yellow when an // element is turned on and pressed down. void OnGUI() { GUI.skin.button.onActive.textColor = Color.yellow; }}