liabru

Results 233 comments of liabru

Try out this experimental branch which improves timing issues and hopefully is more stable for this kind of effect: https://github.com/liabru/matter-js/pull/777

Pretty much as @wmike1987 says (thanks!)

@DzzD good to know that approach is working for you, it's worth trying out branch #777 too if you get chance. I've got similar prototypes of adaptive fixed timestep for...

Yeah unfortunately this isn't currently a feature built in to the debug renderer, but your solution looks about right to me. Thanks for raising though, I've marked this as a...

@Prokos good catch, I couldn't reproduce the issue as I'm not sure on the setup required for it but I've accounted for that

Thanks for raising this but at least as of the latest version I can't reproduce an issue running through `file:///`, so this may have been resolved another way since this...

It does seem strange but this actually falls out of the math from position Verlet integration: ``` xi+1 = xi + (xi - xi-1) + a * dt * dt...

@Qbyte248 it looks like you're assuming a fixed timestep there, which as it stands the engine does not assume, so it can't be simplified or rearranged that way in this...

Thanks for providing this test case. I need to investigate but it looks like an edge case the solver is having problems with, which would definitely be nice to improve...

I've added the polyfill to the demo, anyone else wishing to use it will need to include the polyfill in their code too. It looks like rewriting the module to...