版本:Unity 6(6000.0)
语言英语
  • C#

LayerMask.LayerMask

提出建议更改内容

成功!

感谢你帮助我们提高 Unity 文档的质量。尽管我们无法接受所有提交的内容,但我们会阅读来自用户的所有建议更改,并在适用情况下进行更新。

关闭

提交失败

由于某些原因,你的建议更改无法提交。请在几分钟后<a>重试</a>。感谢你花时间帮助我们提高 Unity 文档的质量。

关闭

取消

说明

隐式地将整数转换为 LayerMask。

using UnityEngine;

public class Example : MonoBehaviour { void Start() { // Converts an int to a layer mask and prints all the layer names. // As the value is 3, it will print "Default" and "TransparentFX". // 2^0 + 2^1 = 1 + 2 = 3

int number = 3; LayerMask layerMask; layerMask = number; for (int i = 0; i < 32; i++) { if ((layerMask.value & (1 << i)) != 0) { Debug.Log($"Layer {i}: {LayerMask.LayerToName(i)}"); } } } }