@needle-tools/engine 3.31.0 → 3.31.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/CHANGELOG.md +3 -0
- package/dist/needle-engine.js +462 -456
- package/dist/needle-engine.light.js +829 -823
- package/dist/needle-engine.light.min.js +24 -24
- package/dist/needle-engine.light.umd.cjs +42 -42
- package/dist/needle-engine.min.js +25 -25
- package/dist/needle-engine.umd.cjs +42 -42
- package/lib/engine/engine_addressables.d.ts +3 -3
- package/lib/engine/engine_addressables.js +14 -16
- package/lib/engine/engine_addressables.js.map +1 -1
- package/lib/engine/engine_gameobject.d.ts +17 -3
- package/lib/engine/engine_gameobject.js +20 -2
- package/lib/engine/engine_gameobject.js.map +1 -1
- package/lib/engine/engine_networking_instantiate.d.ts +2 -2
- package/lib/engine/engine_networking_instantiate.js.map +1 -1
- package/lib/engine-components/Component.d.ts +3 -3
- package/lib/engine-components/Component.js.map +1 -1
- package/package.json +1 -1
- package/src/engine/engine_addressables.ts +20 -22
- package/src/engine/engine_gameobject.ts +38 -8
- package/src/engine/engine_networking_instantiate.ts +3 -3
- package/src/engine-components/Component.ts +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,9 @@ 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.31.1] - 2023-01-27
|
|
8
|
+
- Fix: AssetRefernence.instantiate does now clone instantiate options before awaiting asset loading
|
|
9
|
+
|
|
7
10
|
## [3.31.0] - 2023-01-23
|
|
8
11
|
- Fix: `isDesktop()` util method should return false on iPad
|
|
9
12
|
|