@babylonjs/core 8.12.0 → 8.12.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.
- package/Engines/abstractEngine.js +2 -2
- package/Engines/abstractEngine.js.map +1 -1
- package/Misc/observable.d.ts +1 -1
- package/Misc/observable.js.map +1 -1
- package/Particles/IParticleSystem.d.ts +4 -0
- package/Particles/IParticleSystem.js.map +1 -1
- package/Particles/Node/nodeParticleSystemSet.d.ts +2 -1
- package/Particles/Node/nodeParticleSystemSet.js +2 -1
- package/Particles/Node/nodeParticleSystemSet.js.map +1 -1
- package/Particles/baseParticleSystem.d.ts +4 -0
- package/Particles/baseParticleSystem.js +6 -0
- package/Particles/baseParticleSystem.js.map +1 -1
- package/Particles/particleSystem.js.map +1 -1
- package/package.json +1 -1
|
@@ -787,13 +787,13 @@ export class AbstractEngine {
|
|
|
787
787
|
*/
|
|
788
788
|
// Not mixed with Version for tooling purpose.
|
|
789
789
|
static get NpmPackage() {
|
|
790
|
-
return "babylonjs@8.12.
|
|
790
|
+
return "babylonjs@8.12.1";
|
|
791
791
|
}
|
|
792
792
|
/**
|
|
793
793
|
* Returns the current version of the framework
|
|
794
794
|
*/
|
|
795
795
|
static get Version() {
|
|
796
|
-
return "8.12.
|
|
796
|
+
return "8.12.1";
|
|
797
797
|
}
|
|
798
798
|
/**
|
|
799
799
|
* Gets the HTML canvas attached with the current webGL context
|