@onerjs/core 8.46.2 → 8.46.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.
- package/Engines/abstractEngine.js +2 -2
- package/Engines/abstractEngine.js.map +1 -1
- package/Engines/shaderStore.js +2 -2
- package/Engines/shaderStore.js.map +1 -1
- package/Layers/thinHighlightLayer.js.map +1 -1
- package/Layers/thinSelectionOutlineLayer.js +20 -5
- package/Layers/thinSelectionOutlineLayer.js.map +1 -1
- package/Materials/Textures/baseTexture.js +3 -0
- package/Materials/Textures/baseTexture.js.map +1 -1
- package/Materials/Textures/texture.js +1 -0
- package/Materials/Textures/texture.js.map +1 -1
- package/Misc/tools.js +1 -1
- package/Misc/tools.js.map +1 -1
- package/node.d.ts +7 -0
- package/node.js +17 -0
- package/node.js.map +1 -1
- package/package.json +2 -2
|
@@ -812,13 +812,13 @@ export class AbstractEngine {
|
|
|
812
812
|
*/
|
|
813
813
|
// Not mixed with Version for tooling purpose.
|
|
814
814
|
static get NpmPackage() {
|
|
815
|
-
return "babylonjs@9.
|
|
815
|
+
return "babylonjs@9.1.0";
|
|
816
816
|
}
|
|
817
817
|
/**
|
|
818
818
|
* Returns the current version of the framework
|
|
819
819
|
*/
|
|
820
820
|
static get Version() {
|
|
821
|
-
return "9.
|
|
821
|
+
return "9.1.0";
|
|
822
822
|
}
|
|
823
823
|
/**
|
|
824
824
|
* Gets the HTML canvas attached with the current webGL context
|