Skip to content

Commit 2c75c0d

Browse files
committed
Adding postUpdate NOOP to PhysicsManager to prevent crashing on postUpdate
1 parent a1957b9 commit 2c75c0d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

v3/src/scene/plugins/PhysicsManager.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ var PhysicsManager = new Class({
2323
this.system;
2424

2525
// This gets set by the physics system during boot
26-
this.world = { update: NOOP };
26+
this.world = { update: NOOP, postUpdate: NOOP };
2727

2828
// This gets set by the physics system during boot
2929
this.add;

0 commit comments

Comments
 (0)