Legacy Documentation: Version 4.6(go to latest)
Language: English
  • C#
  • JS
  • Boo

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

LayerMask.GetMask

public static function GetMask(params layerNames: string[]): int;

Parameters

layerNames List of layer names to convert to a layer mask.

Returns

int The layer mask created from the layerNames.

Description

Given a set of layer names as defined by either a Builtin or a User Layer in the Tag Manager, returns the equivalent layer mask for all of them.

	Debug.Log(LayerMask.GetMask("UserLayerA", "UserLayerB"));