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 Chris0128 · May 22, 2017 at 05:14 AM · collisioncolliderdetectionverticesvalue

How to get the 8 vertices coordinates of a box collider

I'm trying to get the coordinates of the vertices of a box collider. is there any way I can save those coordinates in an array?

I've tried a lot of "solution" so far. None has worked, and I really need to know how to do this.

Thanks in advance!

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

1 Reply

· Add your reply
  • Sort: 
avatar image
3

Answer by Bunny83 · May 22, 2017 at 06:54 AM

A BoxCollider doesn't have vertices or faces. It's a mathematically described box. If you're interested in getter the worldspace positions of each corner you can do this:


     BoxCollider col;

     var trans = col.transform;
     var min = col.center - col.size * 0.5f;
     var max = col.center + col.size * 0.5f;

     var P000 = trans.TransformPoint(new Vector3(min.x, min.y, min.z));
     var P001 = trans.TransformPoint(new Vector3(min.x, min.y, max.z));
     var P010 = trans.TransformPoint(new Vector3(min.x, max.y, min.z));
     var P011 = trans.TransformPoint(new Vector3(min.x, max.y, max.z));
     var P100 = trans.TransformPoint(new Vector3(max.x, min.y, min.z));
     var P101 = trans.TransformPoint(new Vector3(max.x, min.y, max.z));
     var P110 = trans.TransformPoint(new Vector3(max.x, max.y, min.z));
     var P111 = trans.TransformPoint(new Vector3(max.x, max.y, max.z));

Here P000 to P011 are the 4 corners of the left face and P100 to P111 the corners of the right face.

So P000 is the left, bottom, back point as seen in local coordinates.
And P101 is the right, bottom, front point.

That's how you get the world positions of each corner of a BoxCollider.

If you would have mentioned what you are trying to achieve where might be an easier way. Though if you really need all 8 corners in worldspace, this is the way to do it.

Comment
Add comment · Show 2 · 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 unity_BMj0XQh51UbaDQ · May 13, 2020 at 11:14 AM 1
Share

I think this converts to World coordinates twice. At least this code dit not work for me until I corrected max and $$anonymous$$ to:

 var $$anonymous$$ = (col.center - col.size * 0.5f); 
 var max = (col.center + col.size * 0.5f); 
        
avatar image Bunny83 unity_BMj0XQh51UbaDQ · May 13, 2020 at 11:44 AM 0
Share

Yes, you're right ;) I probably first tried using TransformPoint but then realised just converting the $$anonymous$$ and max wouldn't work for a rotated box so I changed it to the worldspace right, up, forward axis in which case we have to use the local space positions / offsets. However there is still an issue when the gameobject is scaled. TransformPoint took care of that.

Since the scale goes through the whole parent chain the scale can cause all sorts of distortions. However since Unity states that shear transforms are actually not supported by primitive colliders we probably can assume we deal with uniform scaling in the parent and maybe non uniform scaling at the actual box collider object.


All in all this whole approach probably isn't very robust anyways. I think the best results would be achieved by just calculating the vertex positions in local space and using TransformPoint for each vertex.


I'll edit my answer any replace the original code.

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

5 People are following this question.

avatar image avatar image avatar image avatar image avatar image

Related Questions

Weapon System with collide detection (Helps with script pls)!!! 0 Answers

Particle Collision / Trigger not being reported to On_xx Event 1 Answer

Collision Enter one of the objects ? 1 Answer

Inaccurate collision detection (Bumps) 2 Answers

Unity Collison Problem 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