LayerMask.operator LayerMask 运算符 层蒙版
static implicit function LayerMask (intVal : int) : LayerMask
Description描述
implicitly converts an integer to a LayerMask
隐式转化一个整数到一个层蒙板。
using UnityEngine;
using System.Collections;
public class example : MonoBehaviour {
public int i = 0;
public LayerMask la;
public void Awake() {
la = i;
Debug.Log(LayerMask.LayerToName(la));
}
}
// Converts an integer to a layer and prints the layer name.
//转换一个整数到一个层蒙版,并打印这个层名字
var i : int = 0;
var la : LayerMask;
la = i;
Debug.Log(LayerMask.LayerToName(la));
最后修改:2011年2月24日 Thursday 16:15