@awayfl/awayfl-player
Version:
Flash Player emulator for executing SWF files (published for FP versions 6 and up) in javascript
18 lines (17 loc) • 463 B
JavaScript
/**
* @private
*/
var b2TimeStep = /** @class */ (function () {
function b2TimeStep() {
this.__fast__ = true;
}
b2TimeStep.prototype.Set = function (step) {
this.dt = step.dt;
this.inv_dt = step.inv_dt;
this.positionIterations = step.positionIterations;
this.velocityIterations = step.velocityIterations;
this.warmStarting = step.warmStarting;
};
return b2TimeStep;
}());
export { b2TimeStep };