将整数隐式转换为 LayerMask。
using UnityEngine; using System.Collections;public class ExampleClass : MonoBehaviour { public int i = 0; public LayerMask la; void Example() { la = i; Debug.Log(LayerMask.LayerToName(la)); } }