Version: 2021.3

Behaviour.isActiveAndEnabled

切换到手册
public bool isActiveAndEnabled ;

描述

Reports whether a GameObject and its associated Behaviour is active and enabled.

A GameObject can be active or inactive. Similarly, a Behaviour can be enabled or disabled. If a GameObject is active and has an enabled behaviour then isActiveAndEnabled will return true. Otherwise false is returned.
Note: value is ReadOnly.
To determine whether GameObject is active, isActiveAndEnabled uses the equivalent of activeInHierarchy.

using UnityEngine;
using System.Collections;
using UnityEngine.UI;

public class Example : MonoBehaviour { public Image pauseMenu;

public void Update() { //Checks if the GameObject and Image are active and enabled. if (pauseMenu.isActiveAndEnabled) { //If the Image is enabled, print "Enabled" in the console. Stops when the image or GameObject is disabled. Debug.Log("Enabled"); } } }
Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961