Version: 2020.1
언어: 한국어

Behaviour.isActiveAndEnabled

매뉴얼로 전환
public bool isActiveAndEnabled ;

설명

Has the Behaviour had active and enabled called?

A GameObject can be active or not active. Similarly, a script can be enabled or disabled. If a GameObject is active and has an enabled script then isActiveAndEnabled will return true. Otherwise false is returned.

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

public class Example : MonoBehaviour { public Image pauseMenu;

public void Update() { //Checks if the object is enabled. if (pauseMenu.isActiveAndEnabled) { //If the image is enabled, print "Enabled" in the console. (Stops when the image is disabled). Debug.Log("Enabled"); } } }