Version: 2017.1

설명

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)); } }