@needle-tools/engine 3.34.3-alpha.1 → 3.34.4-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 +4 -0
- package/README.md +9 -10
- package/dist/needle-engine.js +1679 -1682
- package/dist/needle-engine.light.js +1741 -1744
- package/dist/needle-engine.light.min.js +151 -151
- package/dist/needle-engine.light.umd.cjs +155 -155
- package/dist/needle-engine.min.js +150 -150
- package/dist/needle-engine.umd.cjs +155 -155
- package/lib/engine-components/Camera.js +1 -1
- package/lib/engine-components/Camera.js.map +1 -1
- package/lib/engine-components/OrbitControls.d.ts +2 -0
- package/lib/engine-components/OrbitControls.js +41 -40
- package/lib/engine-components/OrbitControls.js.map +1 -1
- package/lib/engine-components/webxr/WebXR.js +0 -6
- package/lib/engine-components/webxr/WebXR.js.map +1 -1
- package/lib/engine-components/webxr/WebXRButtons.js +6 -0
- package/lib/engine-components/webxr/WebXRButtons.js.map +1 -1
- package/package.json +1 -1
- package/src/engine-components/Camera.ts +1 -1
- package/src/engine-components/OrbitControls.ts +40 -38
- package/src/engine-components/webxr/WebXR.ts +0 -5
- package/src/engine-components/webxr/WebXRButtons.ts +6 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,10 @@ 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.34.4-alpha] - 2023-03-20
|
|
8
|
+
- Fix: OrbitControls autoFit frame delay causing a wrong perspective for one frame
|
|
9
|
+
- Fix: Multiple WebXR components causing menu item icons to appear multiple times
|
|
10
|
+
|
|
7
11
|
## [3.34.3-alpha.1] - 2023-03-19
|
|
8
12
|
- Add: debug on-screen console (`?console`) now has a tab to inspect the scene
|
|
9
13
|
- Fix: TransformGizmo component preventing OrbitControls input
|
package/README.md
CHANGED
|
@@ -2,9 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
<img src="https://engine.needle.tools/docs/imgs/banner.webp" />
|
|
4
4
|
|
|
5
|
-
**[Needle Engine](https://needle.tools)** is a web engine for complex and simple 3D applications alike. It is flexible, extensible and has built-in support for collaboration and XR! It is built around the **glTF standard** for 3D assets.
|
|
5
|
+
**[Needle Engine](https://needle.tools)** is a web engine for complex and simple 3D applications alike. It is flexible, extensible and has built-in support for collaboration and XR! It is built around the **glTF standard** for 3D assets.
|
|
6
|
+
|
|
7
|
+
[Read the Changelog](https://github.com/needle-tools/needle-engine-support/releases)
|
|
6
8
|
|
|
7
9
|
### Features
|
|
10
|
+
- Powered by three.js
|
|
8
11
|
- WebXR support
|
|
9
12
|
- Builtin Networking
|
|
10
13
|
- iOS Quicklook support for interactive AR
|
|
@@ -15,14 +18,11 @@
|
|
|
15
18
|
- Lightmaps
|
|
16
19
|
- Postprocessing
|
|
17
20
|
- Custom Components and scripts
|
|
18
|
-
- Running on three.js
|
|
19
21
|
- Progressive Texture Loading
|
|
20
22
|
- Dynamic Content Loading
|
|
21
23
|
- Mutli-Scene support
|
|
22
|
-
- Unity
|
|
23
|
-
-
|
|
24
|
-
|
|
25
|
-
[See more](https://docs.needle.tools/features)
|
|
24
|
+
- Integrations for Unity or Blender
|
|
25
|
+
- [More features](https://docs.needle.tools/features)
|
|
26
26
|
|
|
27
27
|
## Editor Integrations
|
|
28
28
|
|
|
@@ -45,8 +45,7 @@ Try now [Needle Engine on StackBlitz](https://engine.needle.tools/new) ⚡
|
|
|
45
45
|
|
|
46
46
|
# Contact ✒️
|
|
47
47
|
<b>[🌵 needle — tools for creators](https://needle.tools)</b> •
|
|
48
|
-
[
|
|
49
|
-
[
|
|
50
|
-
[
|
|
51
|
-
[Discord](https://discord.needle.tools)
|
|
48
|
+
[Twitter](https://twitter.com/NeedleTools) •
|
|
49
|
+
[Discord](https://discord.needle.tools) •
|
|
50
|
+
[Forum](https://forum.needle.tools)
|
|
52
51
|
|