next-flow-interface 0.26.13 → 0.26.14
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/index.d.ts +15 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -4944,6 +4944,20 @@ export declare class RsNodeService {
|
|
|
4944
4944
|
*/
|
|
4945
4945
|
static get instance(): RsNodeService;
|
|
4946
4946
|
private constructor();
|
|
4947
|
+
/**
|
|
4948
|
+
* 移除节点映射(不销毁 Babylon 节点)
|
|
4949
|
+
*
|
|
4950
|
+
* @param nid - 节点唯一标识符
|
|
4951
|
+
* @returns 是否成功移除
|
|
4952
|
+
*/
|
|
4953
|
+
removeNodePair(nid: string): boolean;
|
|
4954
|
+
/**
|
|
4955
|
+
* 从 Babylon 场景中删除节点(包括子节点)并移除映射
|
|
4956
|
+
*
|
|
4957
|
+
* @param nid - 节点唯一标识符
|
|
4958
|
+
* @returns 是否成功删除
|
|
4959
|
+
*/
|
|
4960
|
+
remove(nid: string): boolean;
|
|
4947
4961
|
/**
|
|
4948
4962
|
* 生成场景节点结构并添加到 RvScene
|
|
4949
4963
|
*
|
|
@@ -6309,7 +6323,7 @@ export declare interface RvSceneNode {
|
|
|
6309
6323
|
fingerprint?: string;
|
|
6310
6324
|
copy?: string;
|
|
6311
6325
|
};
|
|
6312
|
-
|
|
6326
|
+
deleted?: boolean;
|
|
6313
6327
|
}
|
|
6314
6328
|
|
|
6315
6329
|
/**
|