Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(release): set version to 1.36.2 [skip ci]
### [1.36.2](v1.36.1...v1.36.2) (2021-06-19) #### Bug Fixes * **Tracking:** prevent kinematic state fix firing multiple times ([e457f82](e457f82)) > The kinematic state change fix that was introduced to fix the PhysX change in Unity 2019.3 was causing an issue with compound colliders because the OnTriggerXXX will fire for every change in a compound collider and not just at the containing Rigidbody. > > This would mean that with compound colliders it would get out of sync with the state changed check when the kinematic state changed. > > This has been fixed now by checking if the given collider in the OnTriggerExit method has already been fired (on the containing Rigidbody) within the same frame, and if it has then this is most likely a compound collider causing the event so they get ignored. * **Utility:** ensure created prefabs are added to selected GameObject ([10143bb](10143bb)) > The prefab creator now adds the newly created prefab to the selected GameObject rather than just putting it in the root.
- Loading branch information