You should be using either
LayerMask.GetMask("A", "B")
or
(1 << LayerMask.NameToLayer("A")) | (1<< LayerMask.NameToLayer("B"))
or if you wanna make life easy, just add a public LayerMask field and set in in the inspector
public LayerMask layerMask
반응형
'게임엔진(GameEngine) > Unity3D' 카테고리의 다른 글
유니티 안드로이드 로그캣으로 디버깅 하기 - Unity Android Logcat Debugging. (0) | 2022.06.06 |
---|---|
유니티에서 async, await 사용하기 (0) | 2022.04.23 |
OnPhotonInstantiate, STart OnPhotonSerializeView 순서 (0) | 2022.02.11 |
PhotonNetwork.Instantiate with data (0) | 2022.02.10 |
C# eventHandler 중복, Action 중복 방지 하기 (0) | 2022.02.05 |