babylonjs-node-render-graph-editor 8.55.3 → 8.55.4

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.
@@ -4085,7 +4085,7 @@ declare module BABYLON.NodeRenderGraphEditor.SharedUIComponents {
4085
4085
  /**
4086
4086
  * Optional default value that enables clearing the current linked entity
4087
4087
  */
4088
- defaultValue?: T;
4088
+ defaultValue?: BABYLON.Nullable<T>;
4089
4089
  };
4090
4090
  /**
4091
4091
  * A generic primitive component with a ComboBox for selecting from a list of entities.
@@ -4381,6 +4381,31 @@ declare module BABYLON.NodeRenderGraphEditor.SharedUIComponents {
4381
4381
 
4382
4382
 
4383
4383
 
4384
+ }
4385
+ declare module BABYLON.NodeRenderGraphEditor {
4386
+
4387
+
4388
+ }
4389
+ declare module BABYLON.NodeRenderGraphEditor.SharedUIComponents {
4390
+ export type ClusteredLightContainerSelectorProps = BABYLON.NodeRenderGraphEditor.SharedUIComponents.PrimitiveProps<BABYLON.Nullable<BABYLON.ClusteredLightContainer>> & {
4391
+ /**
4392
+ * The scene to get clustered light containers from
4393
+ */
4394
+ scene: BABYLON.Scene;
4395
+ /**
4396
+ * Optional filter function to filter which clustered light containers are shown
4397
+ */
4398
+ filter?: (container: BABYLON.ClusteredLightContainer) => boolean;
4399
+ } & Omit<BABYLON.NodeRenderGraphEditor.SharedUIComponents.EntitySelectorProps<BABYLON.ClusteredLightContainer>, "getEntities" | "getName">;
4400
+ /**
4401
+ * A primitive component with a ComboBox for selecting from existing scene clustered light containers.
4402
+ * @param props ClusteredLightContainerSelectorProps
4403
+ * @returns ClusteredLightContainerSelector component
4404
+ */
4405
+ export var ClusteredLightContainerSelector: React.FunctionComponent<ClusteredLightContainerSelectorProps>;
4406
+
4407
+
4408
+
4384
4409
  }
4385
4410
  declare module BABYLON.NodeRenderGraphEditor {
4386
4411
 
@@ -5206,10 +5231,12 @@ declare module BABYLON.NodeRenderGraphEditor.SharedUIComponents {
5206
5231
  type MaterialSelectorPropertyLineProps = BABYLON.NodeRenderGraphEditor.SharedUIComponents.PropertyLineProps<BABYLON.Nullable<BABYLON.Material>> & BABYLON.NodeRenderGraphEditor.SharedUIComponents.MaterialSelectorProps;
5207
5232
  type TextureSelectorPropertyLineProps = BABYLON.NodeRenderGraphEditor.SharedUIComponents.PropertyLineProps<BABYLON.Nullable<BABYLON.BaseTexture>> & BABYLON.NodeRenderGraphEditor.SharedUIComponents.TextureSelectorProps;
5208
5233
  type SkeletonSelectorPropertyLineProps = BABYLON.NodeRenderGraphEditor.SharedUIComponents.PropertyLineProps<BABYLON.Nullable<BABYLON.Skeleton>> & BABYLON.NodeRenderGraphEditor.SharedUIComponents.SkeletonSelectorProps;
5234
+ type ClusteredLightContainerSelectorPropertyLineProps = BABYLON.NodeRenderGraphEditor.SharedUIComponents.PropertyLineProps<BABYLON.Nullable<BABYLON.ClusteredLightContainer>> & BABYLON.NodeRenderGraphEditor.SharedUIComponents.ClusteredLightContainerSelectorProps;
5209
5235
  export const NodeSelectorPropertyLine: (props: NodeSelectorPropertyLineProps) => import("react/jsx-runtime").JSX.Element;
5210
5236
  export const MaterialSelectorPropertyLine: (props: MaterialSelectorPropertyLineProps) => import("react/jsx-runtime").JSX.Element;
5211
5237
  export const TextureSelectorPropertyLine: (props: TextureSelectorPropertyLineProps) => import("react/jsx-runtime").JSX.Element;
5212
5238
  export const SkeletonSelectorPropertyLine: (props: SkeletonSelectorPropertyLineProps) => import("react/jsx-runtime").JSX.Element;
5239
+ export const ClusteredLightContainerSelectorPropertyLine: (props: ClusteredLightContainerSelectorPropertyLineProps) => import("react/jsx-runtime").JSX.Element;
5213
5240
 
5214
5241
 
5215
5242
 
@@ -4032,7 +4032,7 @@ export type EntitySelectorProps<T extends Entity> = (PrimitiveProps<Nullable<T>>
4032
4032
  /**
4033
4033
  * Optional default value that enables clearing the current linked entity
4034
4034
  */
4035
- defaultValue?: T;
4035
+ defaultValue?: Nullable<T>;
4036
4036
  };
4037
4037
  /**
4038
4038
  * A generic primitive component with a ComboBox for selecting from a list of entities.
@@ -4305,6 +4305,31 @@ type CollapseProps = {
4305
4305
  export const Collapse: FunctionComponent<PropsWithChildren<CollapseProps>>;
4306
4306
  export {};
4307
4307
 
4308
+ }
4309
+ declare module "babylonjs-node-render-graph-editor/fluent/primitives/clusteredLightContainerSelector" {
4310
+ import { FunctionComponent } from "react";
4311
+ import { Scene } from "babylonjs/scene";
4312
+ import { Nullable } from "babylonjs/types";
4313
+ import { PrimitiveProps } from "babylonjs-node-render-graph-editor/fluent/primitives/primitive";
4314
+ import { EntitySelectorProps } from "babylonjs-node-render-graph-editor/fluent/primitives/entitySelector";
4315
+ import { ClusteredLightContainer } from "babylonjs/Lights/Clustered/clusteredLightContainer";
4316
+ export type ClusteredLightContainerSelectorProps = PrimitiveProps<Nullable<ClusteredLightContainer>> & {
4317
+ /**
4318
+ * The scene to get clustered light containers from
4319
+ */
4320
+ scene: Scene;
4321
+ /**
4322
+ * Optional filter function to filter which clustered light containers are shown
4323
+ */
4324
+ filter?: (container: ClusteredLightContainer) => boolean;
4325
+ } & Omit<EntitySelectorProps<ClusteredLightContainer>, "getEntities" | "getName">;
4326
+ /**
4327
+ * A primitive component with a ComboBox for selecting from existing scene clustered light containers.
4328
+ * @param props ClusteredLightContainerSelectorProps
4329
+ * @returns ClusteredLightContainerSelector component
4330
+ */
4331
+ export const ClusteredLightContainerSelector: FunctionComponent<ClusteredLightContainerSelectorProps>;
4332
+
4308
4333
  }
4309
4334
  declare module "babylonjs-node-render-graph-editor/fluent/primitives/checkbox" {
4310
4335
  import { FunctionComponent } from "react";
@@ -5039,24 +5064,28 @@ export const HexPropertyLine: FunctionComponent<HexPropertyLineProps>;
5039
5064
 
5040
5065
  }
5041
5066
  declare module "babylonjs-node-render-graph-editor/fluent/hoc/propertyLines/entitySelectorPropertyLine" {
5067
+ import { Skeleton } from "babylonjs/Bones/skeleton";
5068
+ import { ClusteredLightContainer } from "babylonjs/Lights/Clustered/clusteredLightContainer";
5069
+ import { Material } from "babylonjs/Materials/material";
5070
+ import { BaseTexture } from "babylonjs/Materials/Textures/baseTexture";
5042
5071
  import { Node } from "babylonjs/node";
5043
5072
  import { Nullable } from "babylonjs/types";
5044
- import { PropertyLineProps } from "babylonjs-node-render-graph-editor/fluent/hoc/propertyLines/propertyLine";
5045
- import { NodeSelectorProps } from "babylonjs-node-render-graph-editor/fluent/primitives/nodeSelector";
5073
+ import { ClusteredLightContainerSelectorProps } from "babylonjs-node-render-graph-editor/fluent/primitives/clusteredLightContainerSelector";
5046
5074
  import { MaterialSelectorProps } from "babylonjs-node-render-graph-editor/fluent/primitives/materialSelector";
5047
- import { TextureSelectorProps } from "babylonjs-node-render-graph-editor/fluent/primitives/textureSelector";
5075
+ import { NodeSelectorProps } from "babylonjs-node-render-graph-editor/fluent/primitives/nodeSelector";
5048
5076
  import { SkeletonSelectorProps } from "babylonjs-node-render-graph-editor/fluent/primitives/skeletonSelector";
5049
- import { Material } from "babylonjs/Materials/material";
5050
- import { BaseTexture } from "babylonjs/Materials/Textures/baseTexture";
5051
- import { Skeleton } from "babylonjs/Bones/skeleton";
5077
+ import { TextureSelectorProps } from "babylonjs-node-render-graph-editor/fluent/primitives/textureSelector";
5078
+ import { PropertyLineProps } from "babylonjs-node-render-graph-editor/fluent/hoc/propertyLines/propertyLine";
5052
5079
  type NodeSelectorPropertyLineProps = PropertyLineProps<Nullable<Node>> & NodeSelectorProps;
5053
5080
  type MaterialSelectorPropertyLineProps = PropertyLineProps<Nullable<Material>> & MaterialSelectorProps;
5054
5081
  type TextureSelectorPropertyLineProps = PropertyLineProps<Nullable<BaseTexture>> & TextureSelectorProps;
5055
5082
  type SkeletonSelectorPropertyLineProps = PropertyLineProps<Nullable<Skeleton>> & SkeletonSelectorProps;
5083
+ type ClusteredLightContainerSelectorPropertyLineProps = PropertyLineProps<Nullable<ClusteredLightContainer>> & ClusteredLightContainerSelectorProps;
5056
5084
  export const NodeSelectorPropertyLine: (props: NodeSelectorPropertyLineProps) => import("react/jsx-runtime").JSX.Element;
5057
5085
  export const MaterialSelectorPropertyLine: (props: MaterialSelectorPropertyLineProps) => import("react/jsx-runtime").JSX.Element;
5058
5086
  export const TextureSelectorPropertyLine: (props: TextureSelectorPropertyLineProps) => import("react/jsx-runtime").JSX.Element;
5059
5087
  export const SkeletonSelectorPropertyLine: (props: SkeletonSelectorPropertyLineProps) => import("react/jsx-runtime").JSX.Element;
5088
+ export const ClusteredLightContainerSelectorPropertyLine: (props: ClusteredLightContainerSelectorPropertyLineProps) => import("react/jsx-runtime").JSX.Element;
5060
5089
  export {};
5061
5090
 
5062
5091
  }
@@ -10284,7 +10313,7 @@ declare module BABYLON.NodeRenderGraphEditor.SharedUIComponents {
10284
10313
  /**
10285
10314
  * Optional default value that enables clearing the current linked entity
10286
10315
  */
10287
- defaultValue?: T;
10316
+ defaultValue?: BABYLON.Nullable<T>;
10288
10317
  };
10289
10318
  /**
10290
10319
  * A generic primitive component with a ComboBox for selecting from a list of entities.
@@ -10580,6 +10609,31 @@ declare module BABYLON.NodeRenderGraphEditor.SharedUIComponents {
10580
10609
 
10581
10610
 
10582
10611
 
10612
+ }
10613
+ declare module BABYLON.NodeRenderGraphEditor {
10614
+
10615
+
10616
+ }
10617
+ declare module BABYLON.NodeRenderGraphEditor.SharedUIComponents {
10618
+ export type ClusteredLightContainerSelectorProps = BABYLON.NodeRenderGraphEditor.SharedUIComponents.PrimitiveProps<BABYLON.Nullable<BABYLON.ClusteredLightContainer>> & {
10619
+ /**
10620
+ * The scene to get clustered light containers from
10621
+ */
10622
+ scene: BABYLON.Scene;
10623
+ /**
10624
+ * Optional filter function to filter which clustered light containers are shown
10625
+ */
10626
+ filter?: (container: BABYLON.ClusteredLightContainer) => boolean;
10627
+ } & Omit<BABYLON.NodeRenderGraphEditor.SharedUIComponents.EntitySelectorProps<BABYLON.ClusteredLightContainer>, "getEntities" | "getName">;
10628
+ /**
10629
+ * A primitive component with a ComboBox for selecting from existing scene clustered light containers.
10630
+ * @param props ClusteredLightContainerSelectorProps
10631
+ * @returns ClusteredLightContainerSelector component
10632
+ */
10633
+ export var ClusteredLightContainerSelector: React.FunctionComponent<ClusteredLightContainerSelectorProps>;
10634
+
10635
+
10636
+
10583
10637
  }
10584
10638
  declare module BABYLON.NodeRenderGraphEditor {
10585
10639
 
@@ -11405,10 +11459,12 @@ declare module BABYLON.NodeRenderGraphEditor.SharedUIComponents {
11405
11459
  type MaterialSelectorPropertyLineProps = BABYLON.NodeRenderGraphEditor.SharedUIComponents.PropertyLineProps<BABYLON.Nullable<BABYLON.Material>> & BABYLON.NodeRenderGraphEditor.SharedUIComponents.MaterialSelectorProps;
11406
11460
  type TextureSelectorPropertyLineProps = BABYLON.NodeRenderGraphEditor.SharedUIComponents.PropertyLineProps<BABYLON.Nullable<BABYLON.BaseTexture>> & BABYLON.NodeRenderGraphEditor.SharedUIComponents.TextureSelectorProps;
11407
11461
  type SkeletonSelectorPropertyLineProps = BABYLON.NodeRenderGraphEditor.SharedUIComponents.PropertyLineProps<BABYLON.Nullable<BABYLON.Skeleton>> & BABYLON.NodeRenderGraphEditor.SharedUIComponents.SkeletonSelectorProps;
11462
+ type ClusteredLightContainerSelectorPropertyLineProps = BABYLON.NodeRenderGraphEditor.SharedUIComponents.PropertyLineProps<BABYLON.Nullable<BABYLON.ClusteredLightContainer>> & BABYLON.NodeRenderGraphEditor.SharedUIComponents.ClusteredLightContainerSelectorProps;
11408
11463
  export const NodeSelectorPropertyLine: (props: NodeSelectorPropertyLineProps) => import("react/jsx-runtime").JSX.Element;
11409
11464
  export const MaterialSelectorPropertyLine: (props: MaterialSelectorPropertyLineProps) => import("react/jsx-runtime").JSX.Element;
11410
11465
  export const TextureSelectorPropertyLine: (props: TextureSelectorPropertyLineProps) => import("react/jsx-runtime").JSX.Element;
11411
11466
  export const SkeletonSelectorPropertyLine: (props: SkeletonSelectorPropertyLineProps) => import("react/jsx-runtime").JSX.Element;
11467
+ export const ClusteredLightContainerSelectorPropertyLine: (props: ClusteredLightContainerSelectorPropertyLineProps) => import("react/jsx-runtime").JSX.Element;
11412
11468
 
11413
11469
 
11414
11470
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "babylonjs-node-render-graph-editor",
3
- "version": "8.55.3",
3
+ "version": "8.55.4",
4
4
  "main": "babylon.nodeRenderGraphEditor.js",
5
5
  "types": "babylon.nodeRenderGraphEditor.module.d.ts",
6
6
  "files": [
@@ -14,7 +14,7 @@
14
14
  "clean": "rimraf dist && rimraf babylon*.* -g"
15
15
  },
16
16
  "dependencies": {
17
- "babylonjs": "8.55.3"
17
+ "babylonjs": "8.55.4"
18
18
  },
19
19
  "devDependencies": {
20
20
  "@dev/build-tools": "1.0.0",