@woosh/meep-engine
Version:
Pure JavaScript game engine. Fully featured and production ready.
21 lines • 434 B
TypeScript
export default Motion;
declare class Motion {
/**
* @readonly
* @type {Vector3}
*/
readonly velocity: Vector3;
toJSON(): {
velocity: {
x: number;
y: number;
z: number;
};
};
fromJSON(json: any): void;
}
declare namespace Motion {
let typeName: string;
}
import Vector3 from '../../../core/geom/Vector3.js';
//# sourceMappingURL=Motion.d.ts.map