이 페이지가 있는 버전:
이 페이지가 없는 버전:
Implicitly converts an integer to a 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)); } }