mxdraw 0.1.252 → 0.1.255
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/mxdraw.d.ts +9 -4
- package/dist/mxdraw.esm.js +1 -16
- package/dist/mxdraw.umd.js +1 -16
- package/package.json +1 -1
package/dist/mxdraw.d.ts
CHANGED
|
@@ -1172,10 +1172,6 @@ interface MxFunClass {
|
|
|
1172
1172
|
*/
|
|
1173
1173
|
declare class MxFunClass {
|
|
1174
1174
|
createMxObject: typeof createMxObject;
|
|
1175
|
-
/**
|
|
1176
|
-
* 循环渲染, 将实体添加到场景中自动更新渲染
|
|
1177
|
-
* */
|
|
1178
|
-
renderLoop(isLoop?: boolean): void;
|
|
1179
1175
|
/**
|
|
1180
1176
|
* 为程序设置服务器地址
|
|
1181
1177
|
* @param MXSERVER 服务器地址
|
|
@@ -2770,6 +2766,15 @@ declare class MxDrawObject extends Node<MxDrawEvents, Node<any, any>> {
|
|
|
2770
2766
|
* ```
|
|
2771
2767
|
*/
|
|
2772
2768
|
automaticInversionColor(color: number): number;
|
|
2769
|
+
/**
|
|
2770
|
+
* 启动或停止动画渲染
|
|
2771
|
+
* @example
|
|
2772
|
+
* ```typescript
|
|
2773
|
+
*
|
|
2774
|
+
*
|
|
2775
|
+
* ```
|
|
2776
|
+
*/
|
|
2777
|
+
renderLoop(isLoop?: boolean): void;
|
|
2773
2778
|
}
|
|
2774
2779
|
|
|
2775
2780
|
/**
|