UNPKG

@zxh19890103/wik

Version:

The world-class JavaScript library for building large-scale digital warehouse both on 2D and 3D.

29 lines (28 loc) 595 B
/** * 可以配置的 默认一般移动 1.8M/S 旋转90度一般3.5s 不过移动1.8M/S是最大速度 一般,这个可以配置 */ export declare class GlobalConstManager { /** * the move speed of kubot, mm/s * * 1800 mm per second */ kubotMoveSpeed: number; /** * the rotation speed of kubot, deg/s * * 2.5 s per 90 deg. */ kubotRotateSpeed: number; /** * Animation effects play rate. default = 1 */ robotAnimationRate: number; getVal<V>(k: string, defaultVal?: V): any; setVal(k: string, v: any): void; }