LayerMask.LayerToName
Unity3D 2013. 1. 8. 12:24http://www.devkorea.co.kr/reference/Documentation/ScriptReference/LayerMask.LayerToName.html
static function LayerToName (layer : int) : string
Description
레이어 번호를 감안할 때,Tag Manager내에 있거나 내장 또는 사용자 계층에 정의된 레이어의 이름을 반환한다.
using UnityEngine;
using System.Collections;
public class example : MonoBehaviour {
void Awake() {
Debug.Log(LayerMask.LayerToName(1));
}
}
'Unity3D' 카테고리의 다른 글
Application.persistentDataPath (0) | 2013.01.10 |
---|---|
Object.DontDestroyOnLoad (0) | 2013.01.10 |
Application.LoadLevelAdditiveAsync (2) | 2013.01.07 |
sublimetext (0) | 2013.01.04 |
지국님 블로그 "HellyBelly" (0) | 2013.01.04 |