Legacy Documentation: Version 2018.1 (Go to current version)
LanguageEnglish
  • C#
  • JS

Script language

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

Behaviour.enabled

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

Did you find this page useful? Please give it a rating: