Version: 5.6
public static int NameToLayer (string layerName);

説明

レイヤー名が与えられ、Builtin か Tags and Layers manager の User Layer で定義されているレイヤーのインデックスを返します。

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { void Example() { Debug.Log(LayerMask.NameToLayer("TransparentFX")); } }