返回介绍

Behaviour.isActiveAndEnabled 是否激活并启用

发布于 2019-12-18 15:37:25 字数 1418 浏览 1080 评论 0 收藏 0

JavaScript => public var isActiveAndEnabled: bool;
C# => public bool isActiveAndEnabled;

Description 描述

Has the Behaviour had enabled called.

该Behaviour行为是否已经被启用。

True while the behaviour is enabled, false when disabled.

该Behaviour行为被启用返回true,当禁用时返回false。

JavaScript:

#pragma strict
// Required when Using UI elements.
public class Example {
	public var pauseMenu;
	public function 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");
		}
	}
}

C#:

using UnityEngine;
using System.Collections;
using UnityEngine.UI; // Required when Using UI elements.
 
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");
		}
	}
}

Behaviour 行为

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文