• 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 /
  • Help Room /
avatar image
0
Question by NoahC88 · Mar 29, 2018 at 07:33 PM · inspectorrigidbody2dphysics2d

Accessing Rigidbody2D inspector info in code.

I'm working on an educational app that will help students visualize the forces acting on objects by drawing a continuously updating free-body diagram on-screen. At the moment, I'm working on drawing normal and friction forces.

If you look at a GameObject with a Rigidbody2D component in the inspector, there's a tab called info at the bottom. Inside that is another tab called Contacts, which lists all of the current contacts with other colliders, including information on the impulse that prevented clipping. I need to access the impulseNormal in those contacts.


Things I've tried:


Rigidbody2D.GetContacts(ContactPoint2D[]) - this doesn't turn up anything useful. During FixedUpdate, the Physics system resolved collisions last update, and hasn't begun preliminary movement for the next physics step (FixedUpdate runs before the internal physics loop). As a result, this only returns contacts if we're actively overlapping something. Which we're not, unless internal physics failed to fully resolve a prior collision. This doesn't work consistently.


OnCollisionStay2D - Another dead end. Again, the physics loop has already resolved collisions to the best of its ability, which means that even if we get a contact, it's a 0-penetration one, so the impulseNormal is not correct.


Does anyone know how I can grab the contact data displayed in the inspector?

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
0

Answer by MelvMay · Apr 19, 2018 at 02:12 PM

One way is to use yield WaitForFixedUpdate in a coroutine at which point all the fixed-update has finished as per: Execution Order

Perhaps a better option is to turn off Physics2D.autoSimulation and perform a manual simulation using Physics2D.Simulate(). That way, you control the point at which the simulation occurs and you can immediately afterwards retrieve contacts etc.

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.

Welcome to Unity Answers

The best place to ask and answer questions about development with Unity.

To help users navigate the site we have posted a site navigation guide.

If you are a new user to Unity Answers, check out our FAQ for more information.

Make sure to check out our Knowledge Base for commonly asked Unity questions.

If you are a moderator, see our Moderator Guidelines page.

We are making improvements to UA, see the list of changes.



Follow this Question

Answers Answers and Comments

134 People are following this question.

avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image

Related Questions

Physics 2D with tile collider corner problem 2 Answers

How to change rigidbody type correctly? Angry Birds Game 1 Answer

RigidBody.MovePosition won't stop even after reaching the destination 0 Answers

Had to turn off gravity scale, but now player goes through walls 0 Answers

Player Movement and SurfaceEffector2D 0 Answers

  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • Default
  • Help Room
  • META
  • Moderators
  • Explore
  • Topics
  • Questions
  • Users
  • Badges