Legacy Documentation: Version 5.1
LanguageEnglish
  • C#
  • JS

Script language

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

Behaviour.enabled

Switch to Manual
public var enabled: bool;

Description

Enabled 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;
	}
}