Search Issue Tracker
Won't Fix
Won't Fix in 6000.0.X
Votes
5
Found in
2021.3.38f1
2022.3.29f1
6000.0.3f1
Issue ID
UUM-72321
Regression
No
Trail Renderer visual doesn't match the positions of vertices when they have been offset
Reproduction steps:
1. Open the attached “TrailOffsetTest.zip” project
2. Open the “SampleScene” scene
3. Enter the Play mode
4. In the Game view press the “Space” button on the keyboard a few times
5. Observe the Game view
Expected result: The Trail Renderer visual is offset correctly and no spikes are visible
Actual result: Spikes are visible on the Trail Renderer visual
Reproducible with: 2021.3.38f1, 2022.3.29f1, 6000.0.3f1
Reproducible on: Windows 10 (User reported), Windows 11
Not reproducible on: no other environment tested
Notes:
- Also reproducible in the Player
- Both SetPosition() in a loop and SetPositions() provide the same result
Comments (3)
-
Mackerel_Sky
Jul 05, 2024 08:12
Hi everyone, I downloaded 2022.3.36 and confirmed that this issue no longer persists.
-
Mackerel_Sky
Jul 03, 2024 08:28
Hey! I recently saw that this issue is getting some attention. I just downloaded it and verified that the issue persists in the latest LTS version of Unity, 2022.3.35f1. I'll wait and see if 3.36 fixes it.
-
Mackerel_Sky
May 18, 2024 11:51
More information is contained in the forum post below!
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
- Required SpriteMask class (ID 331) is stripped when "Strip Engine Code" is enabled
- “Maximized serialized file backup not found” error is thrown when minimizing a window in a newly opened project
- Build stack trace contains invalid lines when building with IL2CPP using scripts with delegates containing generic types in the signature
- Entities Systems window has a “Show Full Player Loop” dropdown which does nothing when clicked after enabling “Show Full Player Loop”
- Entities Hierarchy Search “Show/Hide” button’s Lens Icon is blurry when the Editor is on an external monitor
Resolution Note:
The issue here is that the particles spawned this frame get spawned with the new transform and then offset, which means that they get the offset applied twice.
A simple fix is just to change the order in the script, first apply the offset, then transform the position of the scene objects. This seems to work properly and it has no side effects
Resolution Note (6000.0.X):
The issue here is that the particles spawned this frame get spawned with the new transform and then offset, which means that they get the offset applied twice.
A simple fix is just to change the order in the script, first apply the offset, then transform the position of the scene objects. This seems to work properly and it has no side effects