babylonjs-node-editor 5.0.4 → 5.3.0
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/babylon.nodeEditor.d.ts
CHANGED
|
@@ -456,6 +456,7 @@ declare module BABYLON.NodeEditor {
|
|
|
456
456
|
get svgCanvas(): HTMLElement;
|
|
457
457
|
get selectionContainer(): HTMLDivElement;
|
|
458
458
|
get frameContainer(): HTMLDivElement;
|
|
459
|
+
private _selectedFrameAndNodesConflict;
|
|
459
460
|
constructor(props: IGraphCanvasComponentProps);
|
|
460
461
|
static _RefreshNode: (node: GraphNode, visitedNodes?: Set<GraphNode> | undefined, visitedLinks?: Set<NodeLink> | undefined) => void;
|
|
461
462
|
getGridPosition(position: number, useCeil?: boolean): number;
|
|
@@ -681,6 +682,7 @@ declare module BABYLON.NodeEditor {
|
|
|
681
682
|
get enclosingFrameId(): number;
|
|
682
683
|
set enclosingFrameId(value: number);
|
|
683
684
|
set isSelected(value: boolean);
|
|
685
|
+
setIsSelected(value: boolean, marqueeSelection: boolean): void;
|
|
684
686
|
constructor(block: BABYLON.NodeMaterialBlock, globalState: GlobalState);
|
|
685
687
|
isOverlappingFrame(frame: GraphFrame): boolean;
|
|
686
688
|
getPortForConnectionPoint(point: BABYLON.NodeMaterialConnectionPoint): NodePort | null;
|
|
@@ -963,6 +965,7 @@ declare module BABYLON.NodeEditor {
|
|
|
963
965
|
export class ISelectionChangedOptions {
|
|
964
966
|
selection: BABYLON.Nullable<GraphNode | NodeLink | GraphFrame | NodePort | FramePortData>;
|
|
965
967
|
forceKeepSelection?: boolean;
|
|
968
|
+
marqueeSelection?: boolean;
|
|
966
969
|
}
|
|
967
970
|
export class GlobalState {
|
|
968
971
|
nodeMaterial: BABYLON.NodeMaterial;
|