0
0
Fork 0
mirror of https://github.com/liabru/matter-js.git synced 2024-12-28 14:09:01 -05:00

improve Example.substep comments

This commit is contained in:
liabru 2024-03-17 23:04:56 +00:00
parent 720660053c
commit 804634144f

View file

@ -32,8 +32,10 @@ Example.substep = function() {
// create runner with higher precision timestep (requires >= v0.20.0 beta)
var runner = Runner.create({
delta: 1000 / (60 * 10), // 600Hz delta = 1.666ms = 10upf @ 60fps (10x default precision)
maxFrameTime: 1000 / 50 // performance budget
// 600Hz delta = 1.666ms = 10upf @ 60fps (i.e. 10x default precision)
delta: 1000 / (60 * 10),
// 50fps minimum performance target (i.e. budget allows up to ~20ms execution per frame)
maxFrameTime: 1000 / 50
});
Runner.run(runner, engine);