next-flow-interface 0.26.17 → 0.26.18
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 +5 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -5565,6 +5565,7 @@ export declare enum RvBasicType {
|
|
|
5565
5565
|
ICO_SPHERE = "ICO_SPHERE",
|
|
5566
5566
|
CAPSULE = "CAPSULE",
|
|
5567
5567
|
PLANE = "PLANE",
|
|
5568
|
+
TRANSFORM_NODE = "TRANSFORM_NODE",
|
|
5568
5569
|
}
|
|
5569
5570
|
|
|
5570
5571
|
/**
|
|
@@ -6101,6 +6102,7 @@ export declare class RvModelService {
|
|
|
6101
6102
|
has(mid: string): boolean;
|
|
6102
6103
|
hasFid(fid: string): boolean;
|
|
6103
6104
|
add(rvModel: RvModel): string;
|
|
6105
|
+
addTransformNode(): string;
|
|
6104
6106
|
remove(mid: string): boolean;
|
|
6105
6107
|
generateId(): string;
|
|
6106
6108
|
}
|
|
@@ -6402,10 +6404,11 @@ export declare class RvSceneService {
|
|
|
6402
6404
|
isAncestor(nid: string, of: string): boolean;
|
|
6403
6405
|
isParent(nid: string, of: string): boolean;
|
|
6404
6406
|
isChild(nid: string, of: string): boolean;
|
|
6407
|
+
newNode(fromNid?: string): void;
|
|
6405
6408
|
move(nid: string, newParent?: string): void;
|
|
6406
6409
|
delete(nid: string): void;
|
|
6407
6410
|
getDescendantsWithSelf(nid: string): string[];
|
|
6408
|
-
generateId(mid: string, layer
|
|
6411
|
+
generateId(mid: string, layer?: number, index?: number): string;
|
|
6409
6412
|
generateIdAndNameForCopy(fromNid: string): {
|
|
6410
6413
|
nid: string;
|
|
6411
6414
|
name: string;
|
|
@@ -6524,6 +6527,7 @@ export declare class SceneService {
|
|
|
6524
6527
|
offsetX: number;
|
|
6525
6528
|
offsetY: number;
|
|
6526
6529
|
};
|
|
6530
|
+
newNode(fromNid?: string): void;
|
|
6527
6531
|
/**
|
|
6528
6532
|
* 批量复制
|
|
6529
6533
|
*
|