Ah sorry for the confusion, by editor I meant the Unity editor and not the Spine editor.

Setting the FPS to something super high like 250 FPS does minimize the issue, but still seems a bit off and it definitely seems to depend on the frame rate of the game so if there are any frame drops or FPS dips then it gets worse.

If I am able to match the frame rate of the game to the FPS of the physics constraints it does definitely smooth things out, but if there are ever any frame drops or if the frame rate were set to something else then it starts to get out of sync.

You can see what I mean here if the frame rate is uncapped vs vsync is enabled @ 60 fps:

FYI I sent a minimal project which is reproducing the issue for me.

Related Discussions
...

Thanks, sorry for the delay. Harald will be along shortly to help out.

@Noeski Thanks for sending the reproduction project. Unfortunately there is nothing obviously wrong with your setup and also frametime inconsistencies seem not to be the cause of the problem. We will continue to investigate and get back to you here on the forum once we've figured out what's going wrong.

@Noeski We just discovered that it's an internal physics logic problem.

It will require some changes on the runtime side, we will get back to you here on the forum once we have a bugfix ready. Thanks for reporting!

    Harald thank you for looking into this!

    @Nate By the way, as a test I tried removing the physics step altogether and always updating the constraints with the same frame time as the normal Unity deltaTime which is giving me MUCH better results. This would of course be non-deterministic and less stable for a physics simulation, but it looks fine and since this is purely visual the accuracy is not a huge factor to me.

    8 jours plus tard

    Hi @Harald, is there any progress on this? Thanks!

    Sorry for the delay! We investigated and so far the theory is it happens due to how the PhysicsConstraint translate method transfers game world movement to the constraint. We haven't yet determined a fix, but hope to get to it soon.

    9 jours plus tard

    Sorry again for the delay. This appears to be stuttering that happens when the game FPS is slightly different from the physics FPS. It depends on the particular interaction of those two frequencies. It's common for the game update rate to vary slightly, be capped at vsync, and it's possible for it to dip a large amount, for example when another app suddenly takes a lot of resources. Physics accumulates time based on the game update rate, but physics only updates at its configured rate, with any remaining time spilling over to the next game update. For these reasons it's difficult to control the interactions.

    Increasing the physics update rate generally makes the stuttering smaller, but isn't a real solution, again depending on the interactions of the update rates of the game and physics.

    The easiest solution is to remove the fixed time step from physics. When physics runs at the same update rate as the game, stuttering won't occur. The downside is that physics behavior is dependent on the update rate. If the game FPS varies significantly from the update rate the physics settings were designed for, the behavior may be undesirable. For example, things may not move as fast or as far, or they may move too fast or too far. This can be mitigated by capping the physics update rate. For example, if the target game update rate is 60 FPS, allow physics to update between 50 and 70 FPS. Larger variations of the game update rate would cause stuttering.

    Another solution is to interpolate between the last 2 physics states. With this approach, when physics is updated, the difference is not applied right away. Instead every game frame the amount of that difference that is used is based on this percentage: the time elapsed since the update divided by the time between updates. This interpolation ensures smooth movement between physics updates, regardless of alignment of the game and physics update rates. The downside is it's a little more work to remember and apply the values, and especially that then the physics pose is always behind from between 0% to 100% of the physics update rate. For example, at 60 FPS physics would have average lag of 1 / 60 * 50% = 8.3ms with worst case lag of 1 / 60 = 16.6ms.

    Unfortunately, fixing this exceeds the complexity of a change we're comfortable with making to a stable version (4.2). Of the two solutions interpolation is better, so we would like to implement that in 4.3. If you need assistance having physics run at the game update rate, we can help with that.

    @Nate thanks again for taking the time to look into this, I realize it's not a simple fix!

    Adding the option for interpolation sounds like a great solution, this is what Unity offers for their physics system that works well but yes it would have a 1 frame physics delay.

    For us, removing the fixed timestep would be the best short term option and we do have a quick and dirty solution in our fork here: Noeski/spine-runtimes but I've noticed a few weird glitches that occur when changing the global Unity timescale.

    I'm sure you and @Harald have a better idea of how to update to properly support this.

    Thanks!

      Noeski but I've noticed a few weird glitches that occur when changing the global Unity timescale.

      Could you please describe what kind of glitches you received, and between which timescale values you changed? Did you imediately change timescale, or did you change it over time (e.g. via linear interpolation from timescaleA to timescaleB over one second)?

      In general your commit looks good, unfortunately I can't see any obvious reason for a glitch (immediate change) yet that different delta time would cause (apart from different response in general).

      @Harald I figured out what the issue was. It was a side effect of the change I made and also setting 'UnscaledTime' to true which sometimes resulted in a large update time that would cause the physics simulation to get really unstable. I'm fixing this by making sure we still step the physics over multiple smaller steps if the time value is greater than 100ms. This seems to fix the weird glitches that I was seeing.

      @Noeski Glad to hear you've figured it out! Thanks for letting us know.