babylonjs-addons 8.38.0 → 8.39.1
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.
|
@@ -1898,6 +1898,10 @@ export class PointerEventsCaptureBehavior implements Behavior<AbstractMesh> {
|
|
|
1898
1898
|
*/
|
|
1899
1899
|
get attachedMesh(): AbstractMesh | null;
|
|
1900
1900
|
set attachedMesh(value: AbstractMesh | null);
|
|
1901
|
+
/**
|
|
1902
|
+
* Attached node of this behavior
|
|
1903
|
+
*/
|
|
1904
|
+
get attachedNode(): AbstractMesh | null;
|
|
1901
1905
|
constructor(_captureCallback: () => void, _releaseCallback: () => void, { captureOnPointerEnter }?: {
|
|
1902
1906
|
captureOnPointerEnter?: boolean | undefined;
|
|
1903
1907
|
});
|
|
@@ -5201,6 +5205,10 @@ declare module ADDONS {
|
|
|
5201
5205
|
*/
|
|
5202
5206
|
get attachedMesh(): BABYLON.AbstractMesh | null;
|
|
5203
5207
|
set attachedMesh(value: BABYLON.AbstractMesh | null);
|
|
5208
|
+
/**
|
|
5209
|
+
* Attached node of this behavior
|
|
5210
|
+
*/
|
|
5211
|
+
get attachedNode(): BABYLON.AbstractMesh | null;
|
|
5204
5212
|
constructor(_captureCallback: () => void, _releaseCallback: () => void, { captureOnPointerEnter }?: {
|
|
5205
5213
|
captureOnPointerEnter?: boolean | undefined;
|
|
5206
5214
|
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "babylonjs-addons",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.39.1",
|
|
4
4
|
"main": "babylonjs.addons.min.js",
|
|
5
5
|
"types": "babylonjs.addons.module.d.ts",
|
|
6
6
|
"files": [
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"test:escheck": "es-check es6 ./babylonjs.addons.js"
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"babylonjs": "^8.
|
|
18
|
+
"babylonjs": "^8.39.1"
|
|
19
19
|
},
|
|
20
20
|
"devDependencies": {
|
|
21
21
|
"@dev/build-tools": "1.0.0",
|