babylonjs-node-particle-editor 9.3.1 → 9.3.3
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.
|
@@ -2693,10 +2693,10 @@ declare namespace BABYLON.NodeParticleEditor.SharedUIComponents {
|
|
|
2693
2693
|
*/
|
|
2694
2694
|
name?: string;
|
|
2695
2695
|
/**
|
|
2696
|
-
* Whether the bridge should automatically
|
|
2697
|
-
* Defaults to
|
|
2696
|
+
* Whether the bridge should automatically enable trying to connect.
|
|
2697
|
+
* Defaults to true.
|
|
2698
2698
|
*/
|
|
2699
|
-
|
|
2699
|
+
autoEnable?: boolean;
|
|
2700
2700
|
/**
|
|
2701
2701
|
* Additional service definitions to register with the bridge container.
|
|
2702
2702
|
*/
|
|
@@ -3482,9 +3482,9 @@ declare namespace BABYLON.NodeParticleEditor.SharedUIComponents {
|
|
|
3482
3482
|
*/
|
|
3483
3483
|
name: string;
|
|
3484
3484
|
/**
|
|
3485
|
-
* Whether to automatically
|
|
3485
|
+
* Whether to automatically enable connecting when the service is created.
|
|
3486
3486
|
*/
|
|
3487
|
-
|
|
3487
|
+
autoEnable: boolean;
|
|
3488
3488
|
};
|
|
3489
3489
|
/**
|
|
3490
3490
|
* Creates the service definition for the CLI Bridge Service.
|
|
@@ -2855,10 +2855,10 @@ export type ModularBridgeOptions = {
|
|
|
2855
2855
|
*/
|
|
2856
2856
|
name?: string;
|
|
2857
2857
|
/**
|
|
2858
|
-
* Whether the bridge should automatically
|
|
2859
|
-
* Defaults to
|
|
2858
|
+
* Whether the bridge should automatically enable trying to connect.
|
|
2859
|
+
* Defaults to true.
|
|
2860
2860
|
*/
|
|
2861
|
-
|
|
2861
|
+
autoEnable?: boolean;
|
|
2862
2862
|
/**
|
|
2863
2863
|
* Additional service definitions to register with the bridge container.
|
|
2864
2864
|
*/
|
|
@@ -3597,9 +3597,9 @@ export type BridgeServiceOptions = {
|
|
|
3597
3597
|
*/
|
|
3598
3598
|
name: string;
|
|
3599
3599
|
/**
|
|
3600
|
-
* Whether to automatically
|
|
3600
|
+
* Whether to automatically enable connecting when the service is created.
|
|
3601
3601
|
*/
|
|
3602
|
-
|
|
3602
|
+
autoEnable: boolean;
|
|
3603
3603
|
};
|
|
3604
3604
|
/**
|
|
3605
3605
|
* Creates the service definition for the CLI Bridge Service.
|
|
@@ -11072,10 +11072,10 @@ declare namespace BABYLON.NodeParticleEditor.SharedUIComponents {
|
|
|
11072
11072
|
*/
|
|
11073
11073
|
name?: string;
|
|
11074
11074
|
/**
|
|
11075
|
-
* Whether the bridge should automatically
|
|
11076
|
-
* Defaults to
|
|
11075
|
+
* Whether the bridge should automatically enable trying to connect.
|
|
11076
|
+
* Defaults to true.
|
|
11077
11077
|
*/
|
|
11078
|
-
|
|
11078
|
+
autoEnable?: boolean;
|
|
11079
11079
|
/**
|
|
11080
11080
|
* Additional service definitions to register with the bridge container.
|
|
11081
11081
|
*/
|
|
@@ -11861,9 +11861,9 @@ declare namespace BABYLON.NodeParticleEditor.SharedUIComponents {
|
|
|
11861
11861
|
*/
|
|
11862
11862
|
name: string;
|
|
11863
11863
|
/**
|
|
11864
|
-
* Whether to automatically
|
|
11864
|
+
* Whether to automatically enable connecting when the service is created.
|
|
11865
11865
|
*/
|
|
11866
|
-
|
|
11866
|
+
autoEnable: boolean;
|
|
11867
11867
|
};
|
|
11868
11868
|
/**
|
|
11869
11869
|
* Creates the service definition for the CLI Bridge Service.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "babylonjs-node-particle-editor",
|
|
3
|
-
"version": "9.3.
|
|
3
|
+
"version": "9.3.3",
|
|
4
4
|
"main": "babylon.nodeParticleEditor.js",
|
|
5
5
|
"types": "babylon.nodeParticleEditor.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": "9.3.
|
|
17
|
+
"babylonjs": "9.3.3"
|
|
18
18
|
},
|
|
19
19
|
"devDependencies": {
|
|
20
20
|
"@dev/build-tools": "1.0.0",
|