Manual     Reference     Scripting  
  
Scripting > Runtime Classes > LayerMask   
  • Menu
  • Overview
  • Runtime Classes
  • Attributes
  • Enumerations
  • Editor Classes
  • Attributes
  • Enumerations
  • History
  • Index
  • LayerMask
  • All Members
  • Variables
  • value
  • Class Functions
  • LayerToName
  • NameToLayer
  • operator LayerMask

LayerMask.operator LayerMask  

static implicit function LayerMask (intVal : int) : LayerMask

Description

implicitly converts an integer to a LayerMask

JavaScript
// 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));

using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
public int i = 0;
public LayerMask la;
void Example() {
la = i;
Debug.Log(LayerMask.LayerToName(la));
}
}

import UnityEngine
import System.Collections

class example(MonoBehaviour):

public i as int = 0

public la as LayerMask

def Example():
la = i
Debug.Log(LayerMask.LayerToName(la))