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.
CloseEnabled Behaviours are Updated, disabled Behaviours are not.
This is shown as the small checkbox in the inspector of the behaviour.
#pragma strict // Required when Using UI elements. public class Example { public var pauseMenu; public function Start() { //Enables the pause menu UI. pauseMenu.enabled = true; } }
using UnityEngine; using System.Collections; using UnityEngine.UI; // Required when Using UI elements.
public class Example : MonoBehaviour { public Image pauseMenu; public void Start() { //Enables the pause menu UI. pauseMenu.enabled = true; } }