@needle-tools/engine 3.32.21-alpha → 3.32.22-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 +2856 -2833
- package/dist/needle-engine.light.js +2725 -2702
- package/dist/needle-engine.light.min.js +159 -159
- package/dist/needle-engine.light.umd.cjs +119 -119
- package/dist/needle-engine.min.js +159 -159
- package/dist/needle-engine.umd.cjs +119 -119
- package/lib/engine/extensions/NEEDLE_progressive.d.ts +11 -5
- package/lib/engine/extensions/NEEDLE_progressive.js +51 -34
- package/lib/engine/extensions/NEEDLE_progressive.js.map +1 -1
- package/lib/engine-components/SpriteRenderer.d.ts +4 -1
- package/lib/engine-components/SpriteRenderer.js +24 -4
- package/lib/engine-components/SpriteRenderer.js.map +1 -1
- package/lib/engine-components/ui/Graphic.d.ts +2 -1
- package/lib/engine-components/ui/Graphic.js +8 -2
- package/lib/engine-components/ui/Graphic.js.map +1 -1
- package/lib/engine-components/ui/Image.js +3 -2
- package/lib/engine-components/ui/Image.js.map +1 -1
- package/lib/engine-components-experimental/networking/PlayerSync.js +1 -1
- package/lib/engine-components-experimental/networking/PlayerSync.js.map +1 -1
- package/package.json +1 -1
- package/plugins/types/needleConfig.d.ts +1 -0
- package/plugins/types/userconfig.d.ts +3 -0
- package/plugins/vite/build-pipeline.js +97 -0
- package/plugins/vite/index.js +2 -0
- package/src/engine/extensions/NEEDLE_progressive.ts +61 -43
- package/src/engine-components/SpriteRenderer.ts +28 -7
- package/src/engine-components/ui/Graphic.ts +9 -2
- package/src/engine-components/ui/Image.ts +3 -2
- package/src/engine-components-experimental/networking/PlayerSync.ts +1 -1
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.32.22-alpha] - 2023-02-16
|
|
8
|
+
- Add: Needle build-pipeline plugin to run compression as part of the vite build process
|
|
9
|
+
- Fix: Loading of progressive textures in Canvas UI
|
|
10
|
+
- Fix: Loading of progressive textures in Spritesheet renderer
|
|
11
|
+
- Change: SpritesheetRenderer does now directly apply rounded sprite index (instead of relying on the value to be an integer)
|
|
12
|
+
|
|
7
13
|
## [3.32.21-alpha] - 2023-02-16
|
|
8
14
|
- Add: USD `displayName` support for nodes and materials
|
|
9
15
|
- Fix: input double click data on iOS
|