@needle-tools/engine 3.5.7-alpha → 3.5.8-alpha
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/CHANGELOG.md +6 -0
- package/dist/needle-engine.js +3218 -3209
- package/dist/needle-engine.light.js +3101 -3092
- package/dist/needle-engine.light.min.js +109 -109
- package/dist/needle-engine.light.umd.cjs +95 -95
- package/dist/needle-engine.min.js +92 -92
- package/dist/needle-engine.umd.cjs +96 -96
- package/lib/engine/assets/index.js +6 -1
- package/lib/engine/assets/index.js.map +1 -1
- package/lib/engine-components/AudioSource.js +1 -1
- package/lib/engine-components/AudioSource.js.map +1 -1
- package/lib/engine-components/ParticleSystem.d.ts +1 -0
- package/lib/engine-components/ParticleSystem.js +7 -1
- package/lib/engine-components/ParticleSystem.js.map +1 -1
- package/lib/engine-components/SceneSwitcher.d.ts +1 -0
- package/lib/engine-components/SceneSwitcher.js +14 -10
- package/lib/engine-components/SceneSwitcher.js.map +1 -1
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/src/engine/assets/index.ts +6 -1
- package/src/engine-components/AudioSource.ts +1 -1
- package/src/engine-components/ParticleSystem.ts +6 -1
- package/src/engine-components/SceneSwitcher.ts +14 -10
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,12 @@ All notable changes to this package will be documented in this file.
|
|
|
4
4
|
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
|
|
5
5
|
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
|
|
6
6
|
|
|
7
|
+
## [3.5.8-alpha] - 2023-05-16
|
|
8
|
+
- Add NeedleConfig `baseUrl` for codegen
|
|
9
|
+
- Change: AudioSource should pause in background on mobile
|
|
10
|
+
- Fix: logo svg import for nextjs
|
|
11
|
+
- Fix: particle system playOnAwake
|
|
12
|
+
|
|
7
13
|
## [3.5.7-alpha] - 2023-05-15
|
|
8
14
|
- Add: Initial support for text in USDZ
|
|
9
15
|
- Change: add generic to `networking.send` for validation of model
|