babylonjs-node-render-graph-editor 8.3.1 → 8.4.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.
|
@@ -848,6 +848,38 @@ declare module BABYLON.NodeRenderGraphEditor.SharedUIComponents {
|
|
|
848
848
|
|
|
849
849
|
|
|
850
850
|
|
|
851
|
+
}
|
|
852
|
+
declare module BABYLON.NodeRenderGraphEditor {
|
|
853
|
+
|
|
854
|
+
|
|
855
|
+
}
|
|
856
|
+
declare module BABYLON.NodeRenderGraphEditor.SharedUIComponents {
|
|
857
|
+
/**
|
|
858
|
+
* Used by both particleSystem and alphaBlendModes
|
|
859
|
+
*/
|
|
860
|
+
export var commonBlendModes: {
|
|
861
|
+
label: string;
|
|
862
|
+
value: number;
|
|
863
|
+
}[];
|
|
864
|
+
/**
|
|
865
|
+
* Used to populated the blendMode dropdown in our various tools (Node Editor, Inspector, etc.)
|
|
866
|
+
* The below ParticleSystem consts were defined before new Engine alpha blend modes were added, so we have to reference
|
|
867
|
+
* the ParticleSystem.FOO consts explicitly (as the underlying var values are different - they get mapped to engine consts within baseParticleSystem.ts)
|
|
868
|
+
*/
|
|
869
|
+
export var blendModeOptions: {
|
|
870
|
+
label: string;
|
|
871
|
+
value: number;
|
|
872
|
+
}[];
|
|
873
|
+
/**
|
|
874
|
+
* Used to populated the alphaMode dropdown in our various tools (Node Editor, Inspector, etc.)
|
|
875
|
+
*/
|
|
876
|
+
export var alphaModeOptions: {
|
|
877
|
+
label: string;
|
|
878
|
+
value: number;
|
|
879
|
+
}[];
|
|
880
|
+
|
|
881
|
+
|
|
882
|
+
|
|
851
883
|
}
|
|
852
884
|
declare module BABYLON.NodeRenderGraphEditor {
|
|
853
885
|
|