It just takes a little time to change the listbox object I made. To be honest it only has 3 options. But it'd be pleasure if there is a solution.
By the way, with your method. The utmost thing for Construct 2 had been fixed (in terms of marketing). I hope later NW automatically enable single process. Because I don't sense any performance drop by using it. Or they can make it more stable later.
It's showing some really weird behavior to some users, I've had two people in Discord PMing me about minor drops in performance already.
Of course to confirm this I did my own measurements and they turned out to be positive, meaning that you have 1-5% worse performance using single processing.
There is also an issue were --single-process would crash while starting the preview, there's no way to reliably reproduce this yet.
Ah, one more thing. --disable-gpu-vsync makes physic engine go insane. I think physic is based on vsync.
That's weird, did you make sure that all of your physics based ACE's have "* dt" in them?
If you did that and it's still going insane, please upload an example capx and share the link with me.
I'll report it straight to Ashley, maybe he forgot to add dt inside the behavior itself.
EDIT: After giving the "dt" tutorial a read again I've found the following:
Note that Physics is an exception. By default it does not use dt, and therefore is framerate dependent. This is because dt usually has small random variations. These variations can make the same setup in a physics game give different results even if exactly the same thing is done twice. This is often annoying for physics games, so by default it is framerate dependent. However, you can enable use of dt by using the Set Stepping Mode physics action on start of layout, and choose Framerate independent. Note in this mode it still clamps the maximum timestep for physics to 1/30 (about 33ms), because using a very large timestep can cause instability in physics simulations.
Please make use of the highlighted part, if you still experience issues with that please upload an example capx and share the link with me.