Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 14 Next capture
2021 2022 2023
2 captures
12 Jun 22 - 14 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
1
Question by Ellioteff · Feb 10, 2016 at 01:20 PM · 2d gameoverlap

Physics2D.OverlapCircleAll returning colliders outside of the area

I'm using OverlapCircleAll to create a Black Hole effect in my 2D Rogue-LIke game but it seems like it is returning colliders outside of the actual area, im using a range variable both for the overlap method and for a gizmo and enemies outside of the actual gizmo gets affected by my black hole effect but actually in a reverse effect. Here's the code:

 void FixedUpdate()
     {
         Collider2D[] cols = Physics2D.OverlapCircleAll(transform.position, range);
         List<Rigidbody2D> rbs = new List<Rigidbody2D>();
 
         foreach (Collider2D c in cols)
         {
             Rigidbody2D rb = c.attachedRigidbody;
             if (rb != null && !rbs.Contains (rb)) {
                 rbs.Add (rb);
                 float dist = Vector3.Distance(c.transform.position, transform.position);
                 Vector3 v = transform.position - rb.transform.position;
                 if(range >= dist)
                     rb.AddForce (v.normalized * (1.0f - dist/range) * gravityPower);
 
 
 
 
             }
         }
     }
     void OnDrawGizmos()
     {
         Gizmos.color = Color.cyan;
         Gizmos.DrawWireSphere(transform.position, range);
     }
 }

I managed to fix it by adding the if-clause before the addforce line but the fact that I had to do that shows that it actually returns enemies that are outside of the range of the overlapcircle since their distance from the gameobject is longer than the range I gave as an argument. I'm having the same issue in some of my other abilities where enemies outside the area are effected and I don't understand what could possibly be wrong.

Here's an example of what happens without that if-clause in place: https://gyazo.com/77473f8cebd3ed71d80a82d7fa2c864a

Comment
Add comment · Show 1
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 OmerPasa3328 · Nov 27, 2021 at 06:50 PM 0
Share

I do have same problem but I do Have two same scripts that working one is working one isn't??

Dude , did you find a solution?

0 Replies

· Add your reply
  • Sort: 

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

Can't get game objects to instantiate at random positions without overlap - please help! 3 Answers

2D Area of Effect Script - OverlapCircle not working 1 Answer

Spawning something if it is not within another object? 1 Answer

Melee Knockback. 1 Answer

Stop main camera from zooming 2D 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