Search Issue Tracker
Won't Fix
Won't Fix in 2023.3.X
Votes
0
Found in
2021.3.30f1
2022.3.4f1
2023.1.12f1
2023.2.0b8
2023.3.0a4
Issue ID
UUM-48573
Regression
No
Transform and Rigidbody are out of sync when updating a GameObject
Reproduction steps:
1. Open the attached “Test Project” project
2. Open “SampleScene.unity” Scene
3. Enter the Play Mode
4. Observe the Game View
Expected result: “Projectile” GOs do not flicker
Actual result: “Projectile” GOs flicker at the start and at the end
Reproducible with: 2021.3.30f1, 2022.3.4f1, 2023.1.12f1, 2023.2.0b8, 2023.3.0a4
Reproducible on: Windows 10
Not reproducible on: No other environment tested
Notes:
- By uncommenting lines: 15 and 30, in the “Assets/Projectile.cs” file the issue no longer appears
- By uncommenting lines: 15 and 30, and commenting lines: 16 and 31, in the “Assets/Projectile.cs” file the issue is still visible
Add comment
All about bugs
View bugs we have successfully reproduced, and vote for the bugs you want to see fixed most urgently.
Latest issues
- Too little validation messages in the "WebAssembly Language Features" Memory settings
- Project Settings Search Highlights are misaligned when using the Bitmap Text Rendering Mode
- "GetControlID at event ValidateCommand returns a controlID different from the one in Layout event" Warning is thrown when undoing the deletion of Sprite Shape Profile
- Memory related fields in the "WebAssembly Language Features" can be set to the negative numbers
- "WebAssembly Language Features" Header in the Player Settings has a smaller indentation
Resolution Note:
In this case, a gameobject is activated at old pose from an object pool, and that necessitates the need to update both the transform pose and the physics pose. It's advisable to activate objects from pool directly at the needed poses (i.e. set pose and then set active), so that all the components attached to them start working correctly from the get go.
Resolution Note (2023.3.X):
In this case, a gameobject is activated at old pose from an object pool, and that necessitates the need to update both the transform pose and the physics pose. It's advisable to activate objects from pool directly at the needed poses (i.e. set pose and then set active), so that all the components attached to them start working correctly from the get go.