@needle-tools/engine 2.67.12-pre → 2.67.14-pre
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 +17 -0
- package/dist/needle-engine.js +5104 -5041
- package/dist/needle-engine.min.js +4812 -0
- package/dist/needle-engine.umd.cjs +278 -278
- package/lib/engine/engine_input.js +5 -2
- package/lib/engine/engine_input.js.map +1 -1
- package/lib/engine/engine_physics.d.ts +5 -0
- package/lib/engine/engine_physics.js +39 -4
- package/lib/engine/engine_physics.js.map +1 -1
- package/lib/engine/engine_types.d.ts +1 -0
- package/lib/engine/engine_types.js.map +1 -1
- package/lib/engine/engine_utils.js +4 -8
- package/lib/engine/engine_utils.js.map +1 -1
- package/lib/engine-components/Animation.d.ts +1 -1
- package/lib/engine-components/Animation.js +3 -3
- package/lib/engine-components/Animation.js.map +1 -1
- package/lib/engine-components/CharacterController.js +2 -2
- package/lib/engine-components/CharacterController.js.map +1 -1
- package/lib/engine-components/Renderer.d.ts +1 -1
- package/lib/engine-components/Renderer.js +15 -4
- package/lib/engine-components/Renderer.js.map +1 -1
- package/lib/engine-components/WebXR.js +12 -2
- package/lib/engine-components/WebXR.js.map +1 -1
- package/lib/engine-components/WebXRController.js +1 -1
- package/lib/engine-components/WebXRController.js.map +1 -1
- package/lib/engine-components/api.d.ts +1 -0
- package/lib/engine-components/api.js +2 -0
- package/lib/engine-components/api.js.map +1 -0
- package/lib/needle-engine.d.ts +1 -0
- package/lib/needle-engine.js +1 -0
- package/lib/needle-engine.js.map +1 -1
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/package.json +3 -4
- package/plugins/vite/copyfiles.js +37 -10
- package/plugins/vite/reload.js +2 -1
- package/src/engine/codegen/register_types.js +2 -2
- package/src/engine/engine_input.ts +4 -2
- package/src/engine/engine_physics.ts +41 -4
- package/src/engine/engine_types.ts +1 -0
- package/src/engine/engine_utils.ts +4 -8
- package/src/engine-components/Animation.ts +3 -3
- package/src/engine-components/CharacterController.ts +2 -2
- package/src/engine-components/Renderer.ts +19 -5
- package/src/engine-components/WebXR.ts +12 -3
- package/src/engine-components/WebXRController.ts +1 -1
- package/src/engine-components/api.ts +1 -0
- package/src/needle-engine.ts +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,23 @@ 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
|
+
## [2.67.14-pre] - 2023-04-12
|
|
8
|
+
- Change: WebXR camera now copies culling mask from main camera
|
|
9
|
+
- Fix: WebXRController raycast on all layers
|
|
10
|
+
- Fix: WebXR all layers should be visible
|
|
11
|
+
- Fix: set pointer position properly on mouse down to prevent jumps in delta
|
|
12
|
+
- Fix: respect IgnoreRaycast in physics raycasts
|
|
13
|
+
- Fix: issue with CircularBuffer where sometimes the same item was returned twice
|
|
14
|
+
- Fix: boxcolliders with scale 0 (such as adding a BoxCollider to a plane) resulted in flipped normals being returned from raycasts
|
|
15
|
+
- Fix: parenthesis error in CharacterController
|
|
16
|
+
- Fix: issue with mouse vector position being re-used causing delta position being falsely modified
|
|
17
|
+
|
|
18
|
+
## [2.67.13-pre] - 2023-04-11
|
|
19
|
+
- Fix: Animation component settings
|
|
20
|
+
- Fix: instanced renderer matrix auto update
|
|
21
|
+
- Change: enable shadow casting in instanced rendering when any mesh has castShadow enabled
|
|
22
|
+
- Change: export ui pointer events
|
|
23
|
+
|
|
7
24
|
## [2.67.12-pre] - 2023-04-09
|
|
8
25
|
- Add: SSAO color and luminance influence options
|
|
9
26
|
- Change: postprocessing now exposes effect order
|