webcad-ue4-api/types/Add-on/MoveToWCS0.d.ts

19 lines
693 B
TypeScript
Raw Normal View History

2022-02-16 11:15:31 +08:00
import { Entity } from "../DatabaseServices/Entity/Entity";
2021-01-28 10:17:21 +08:00
import { Command } from "../Editor/CommandMachine";
export declare class Command_M0 implements Command {
exec(): Promise<void>;
}
2022-02-16 11:15:31 +08:00
export declare class Command_PackageMove implements Command {
exec(): Promise<void>;
2022-09-28 17:26:49 +08:00
/**
*
* @param allEnts
* @param i1 x轴的 vector index索引
* @param i2 y轴的 vector index索引
* @param [i1d=1000] x轴
* @param [i2d=1000] y轴
* @memberof Command_PackageMove
*/
PackageMove(allEnts: Entity[], i1: number, i2: number, i1d?: number, i2d?: number): void;
2022-02-16 11:15:31 +08:00
}
2021-01-28 10:17:21 +08:00
//# sourceMappingURL=MoveToWCS0.d.ts.map