@needle-tools/engine 2.67.13-pre → 2.67.15-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.
Files changed (36) hide show
  1. package/CHANGELOG.md +15 -0
  2. package/dist/needle-engine.js +7132 -7100
  3. package/dist/needle-engine.min.js +255 -255
  4. package/dist/needle-engine.umd.cjs +255 -255
  5. package/lib/engine/engine_input.js +5 -2
  6. package/lib/engine/engine_input.js.map +1 -1
  7. package/lib/engine/engine_physics.d.ts +5 -0
  8. package/lib/engine/engine_physics.js +39 -4
  9. package/lib/engine/engine_physics.js.map +1 -1
  10. package/lib/engine/engine_types.d.ts +1 -0
  11. package/lib/engine/engine_types.js.map +1 -1
  12. package/lib/engine/engine_utils.js +4 -8
  13. package/lib/engine/engine_utils.js.map +1 -1
  14. package/lib/engine-components/CharacterController.js +2 -2
  15. package/lib/engine-components/CharacterController.js.map +1 -1
  16. package/lib/engine-components/WebXR.js +12 -2
  17. package/lib/engine-components/WebXR.js.map +1 -1
  18. package/lib/engine-components/WebXRController.js +1 -1
  19. package/lib/engine-components/WebXRController.js.map +1 -1
  20. package/lib/engine-components/timeline/PlayableDirector.js +19 -0
  21. package/lib/engine-components/timeline/PlayableDirector.js.map +1 -1
  22. package/lib/engine-components/timeline/TimelineTracks.d.ts +1 -2
  23. package/lib/engine-components/timeline/TimelineTracks.js +3 -13
  24. package/lib/engine-components/timeline/TimelineTracks.js.map +1 -1
  25. package/lib/tsconfig.tsbuildinfo +1 -1
  26. package/package.json +1 -1
  27. package/plugins/generate-font.js +3 -1
  28. package/src/engine/engine_input.ts +4 -2
  29. package/src/engine/engine_physics.ts +41 -4
  30. package/src/engine/engine_types.ts +1 -0
  31. package/src/engine/engine_utils.ts +4 -8
  32. package/src/engine-components/CharacterController.ts +2 -2
  33. package/src/engine-components/WebXR.ts +12 -3
  34. package/src/engine-components/WebXRController.ts +1 -1
  35. package/src/engine-components/timeline/PlayableDirector.ts +19 -0
  36. package/src/engine-components/timeline/TimelineTracks.ts +4 -14
package/CHANGELOG.md CHANGED
@@ -4,6 +4,21 @@ 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.15-pre] - 2023-04-12
8
+ - Fix: Issue where ControlTrack was not being able to resolve bound timeline
9
+ - Fix: issue with font generation where font file name contained a dot
10
+
11
+ ## [2.67.14-pre] - 2023-04-12
12
+ - Change: WebXR camera now copies culling mask from main camera
13
+ - Fix: WebXRController raycast on all layers
14
+ - Fix: WebXR all layers should be visible
15
+ - Fix: set pointer position properly on mouse down to prevent jumps in delta
16
+ - Fix: respect IgnoreRaycast in physics raycasts
17
+ - Fix: issue with CircularBuffer where sometimes the same item was returned twice
18
+ - Fix: boxcolliders with scale 0 (such as adding a BoxCollider to a plane) resulted in flipped normals being returned from raycasts
19
+ - Fix: parenthesis error in CharacterController
20
+ - Fix: issue with mouse vector position being re-used causing delta position being falsely modified
21
+
7
22
  ## [2.67.13-pre] - 2023-04-11
8
23
  - Fix: Animation component settings
9
24
  - Fix: instanced renderer matrix auto update