Search Issue Tracker
Not Reproducible
Votes
18
Found in
5.3.0f4
Issue ID
760561
Regression
No
Constant Physics.Processing spikes in Editor and in Export
This issue has no description.
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
- Graphics.DrawMeshInstanced does not work when 2D Renderer and 2D Shaders are used
- SpeedTree does not move when using WindZone
- "Undeclared identifier 'LinearToSRGB'" error is thrown when creating a color variable with HDR color mode and assigning a Custom Render Texture target in Shader Graph
- Input System package is missing when creating a new HDRP project
- Inconsistent behaviour when interacting with different dropdown types with pointer events on parent Visual Element
georgeq
Mar 09, 2018 20:25
I cannot understand why this is marked as not "Not Reproducible", when it is so easily reproducible, just create a simple scene, create a cube, attach a rigidbody to it and hit play... that's enough to make unity 2018.1.b crawl at a painful 15 fps or less. Disable the box collider and performance improves to about 30 fps.
Xavier-Slat
Sep 18, 2016 10:08
I am getting this issue. Even with no colliders in the scene.
They really need to get a fix for this because I can't develop my game with it there.
I believe the issue likely arrives from using multiple threads. Even when the Thread is not doing anything.
palich12
Jun 09, 2016 09:46
Why so few voites? Very critical bug!
AlanMattano
May 10, 2016 15:14
This Issue ID760561 is the same problem of my Case #717222 (from2015) reported closed by Roman "this case as Morten already took the initiative on the forum post." But i have made the same report since Unity 4.1 and it looks like persist in all Unity versions, In Windows 7 and 10. And persist in a bast range of platforms (in my case since i3 to i7).
AlanMattano
May 10, 2016 14:57
I reported this SPIKES since Unity 4.1 later 5.1 and persist in Unity 5.4.beta17
I think this bug is deep into Unity code and an old one. Good chance is not in the physics process but in rendering or else and physics Inherited the problem. Can be track to the origen in code of Unity 2 or Unity3 in an empty scene?
Rickywild
Mar 21, 2016 22:22
I get this problem in Unity 5.2.3p3 it's a show stopping bug that stutters and lags gameplay. I've found the spikes are present still in a new project in an empty scene, my post on this here http://answers.unity3d.com/questions/1157658/huge-physics-spikes-in-empty-scene-and-populated-s.html
Para-bellum
Mar 09, 2016 16:57
Simple way to reproduce it. Create Thread with empty "while" loop.
private void Start()
{
Thread tr = new Thread(Job);
tr.Start();
}
private void Job()
{
while (true)
{
}
}