In the spine-ts / webgl runtime:
updateWorldTransform(physics) {
if (!physics)
throw new Error("physics is undefined");
Changed to:
updateWorldTransform(physics) {
if (physics === undefined || physics === null)
throw new Error("physics is undefined");
When we pass the physics parameter as Physics.none = 0 it triggers the throw, but Physics.none is a legitimate state, correct?