Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 12 Next capture
2021 2022 2023
1 capture
12 Jun 22 - 12 Jun 22
sparklines
Close Help
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
  • Asset Store
  • Get Unity

UNITY ACCOUNT

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account
  • Blog
  • Forums
  • Answers
  • Evangelists
  • User Groups
  • Beta Program
  • Advisory Panel

Navigation

  • Home
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
    • Blog
    • Forums
    • Answers
    • Evangelists
    • User Groups
    • Beta Program
    • Advisory Panel

Unity account

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account

Language

  • Chinese
  • Spanish
  • Japanese
  • Korean
  • Portuguese
  • Ask a question
  • Spaces
    • Default
    • Help Room
    • META
    • Moderators
    • Topics
    • Questions
    • Users
    • Badges
  • Home /
avatar image
0
Question by talyh · Apr 30, 2017 at 06:10 PM · physics2dlayermask

Why defining a public LayerMask variable doesn't translate the same as defining a private where you use NameToLayer to select the correct layer?

I had a public variables in my script where I could select from Unity which Layer corresponded to the variable.

I decided then to switch the control to code, with a const string defining the LayerName, and a LayerMask variable to be determined on Awake() (though I moved the definitions to Start() and Update() as well, just to see if it'd fix the problem).

In a nutshell, here's what the code would look like.

 public const string grabLayer = "Grabable"; // outside of any functions
 private LayerMask grabLayer; // outside of any functions
 
 grabLayer = LayerMask.NameToLayer(grabLayer);// in Awake() or Start() or Update()
 
 scanForItem = Physics2D.Raycast(transform.position + Vector3.up, Vector3.right * transform.localScale.x, grabbingDistance, grabLayer); // in Update()

I have the same issue with a Phyisics2D.OverlapCircle. When I write to the console the LayerMask index it properly shows the value for the same layer I was choosing from the inspector when the variable was public.

Is there anything in particular in the way the Physics2D class treats layers that would make it treat public / private LayerMasks differently?

Comment
Add comment
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

2 Replies

· Add your reply
  • Sort: 
avatar image
1
Best Answer

Answer by Bunny83 · Apr 30, 2017 at 06:51 PM

The LayerMask.NameToLayer method returns the "index" of the layer with that name, not a layermask. A LayerMask is a bitmask. You can turn an index into a vitmask with only that layer by using the left-shift operator like this:

 layerMask = 1 << IndexOfLayer;

For example an index of "10" would lead to a mask like this: "0x00000200" or in binary:

 00000000 00000000 00000010 00000000




Comment
Add comment · Share
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users
avatar image
0

Answer by talyh · May 01, 2017 at 09:08 AM

Bunny83's pointed me in the right direction to further search the forum and get a better understanding of layer index x layer mask. For others searching, the following thread was really useful. http://answers.unity3d.com/questions/8715/how-do-i-use-layermasks.html

Comment
Add comment · Share
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

Your answer

Hint: You can notify a user about this post by typing @username

Up to 2 attachments (including images) can be used with a maximum of 524.3 kB each and 1.0 MB total.

Follow this Question

Answers Answers and Comments

4 People are following this question.

avatar image avatar image avatar image avatar image

Related Questions

Using Physics2D.IgnoreLayerCollision and LayerMask from Editor 1 Answer

LayerMask help 2 Answers

2D Raycast Layer Mask not working 1 Answer

Why is Raycast hitting masked layer? 1 Answer

Physics2D.CircleCast produces no result whenever a layer mask is specified 1 Answer


Enterprise
Social Q&A

Social
Subscribe on YouTube social-youtube Follow on LinkedIn social-linkedin Follow on Twitter social-twitter Follow on Facebook social-facebook Follow on Instagram social-instagram

Footer

  • Purchase
    • Products
    • Subscription
    • Asset Store
    • Unity Gear
    • Resellers
  • Education
    • Students
    • Educators
    • Certification
    • Learn
    • Center of Excellence
  • Download
    • Unity
    • Beta Program
  • Unity Labs
    • Labs
    • Publications
  • Resources
    • Learn platform
    • Community
    • Documentation
    • Unity QA
    • FAQ
    • Services Status
    • Connect
  • About Unity
    • About Us
    • Blog
    • Events
    • Careers
    • Contact
    • Press
    • Partners
    • Affiliates
    • Security
Copyright © 2020 Unity Technologies
  • Legal
  • Privacy Policy
  • Cookies
  • Do Not Sell My Personal Information
  • Cookies Settings
"Unity", Unity logos, and other Unity trademarks are trademarks or registered trademarks of Unity Technologies or its affiliates in the U.S. and elsewhere (more info here). Other names or brands are trademarks of their respective owners.
  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • Default
  • Help Room
  • META
  • Moderators
  • Explore
  • Topics
  • Questions
  • Users
  • Badges