UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

17 lines 543 B
export default TransformModifyAction; declare class TransformModifyAction extends Action<any> { /** * * @param entity * @param {Transform} modified * @constructor */ constructor(entity: any, modified: Transform); oldState: any; modified: Transform; entity: any; revert(editor: any): Promise<void>; } import { Action } from "../../../src/core/process/undo/Action.js"; import { Transform } from "../../../src/engine/ecs/transform/Transform.js"; //# sourceMappingURL=TransformModifyAction.d.ts.map