hilo3d 1.18.0 → 1.18.1-bone.0
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 +19 -0
- package/README.md +2 -2
- package/README_ZH.md +2 -2
- package/build/Hilo3d.js +3 -3
- package/build/Hilo3d.single.js +2 -2
- package/build/math.single.js +2 -2
- package/examples/js/init.js +1 -1
- package/package.json +1 -1
- package/types/index.d.ts +319 -63
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,22 @@
|
|
|
1
|
+
## [1.18.1-bone.0](https://github.com/hiloteam/Hilo3d/compare/1.18.0...1.18.1-bone.0) (2023-03-27)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* Implement the transpose function only in webgl1 ([012a4f7](https://github.com/hiloteam/Hilo3d/commit/012a4f7cda33b76a03932c17525b5fafc40c0efc))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* Add the onlySyncQuaternion attribute of Node to optimize performance ([0739e6a](https://github.com/hiloteam/Hilo3d/commit/0739e6ad9198cd6b91e6cd381986a8686b936a76))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### Performance Improvements
|
|
15
|
+
|
|
16
|
+
* Optimize the performance of node transform changes ([5a263cf](https://github.com/hiloteam/Hilo3d/commit/5a263cfdb4366295c9b749a1d205fb56495a4c98))
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
1
20
|
# [1.18.0](https://github.com/hiloteam/Hilo3d/compare/1.17.0...1.18.0) (2023-01-29)
|
|
2
21
|
|
|
3
22
|
|
package/README.md
CHANGED
|
@@ -23,7 +23,7 @@ English | [简体中文](./README_ZH.md)
|
|
|
23
23
|
* use script tag from a [cdn][cdn-url]
|
|
24
24
|
|
|
25
25
|
```
|
|
26
|
-
<script src='//cdn.jsdelivr.net/npm/hilo3d@1.18.0/build/Hilo3d.js'></script>
|
|
26
|
+
<script src='//cdn.jsdelivr.net/npm/hilo3d@1.18.1-bone.0/build/Hilo3d.js'></script>
|
|
27
27
|
```
|
|
28
28
|
|
|
29
29
|
### Documentation
|
|
@@ -125,4 +125,4 @@ English | [简体中文](./README_ZH.md)
|
|
|
125
125
|
[size-image]:https://img.badgesize.io/hiloteam/hilo3d/master/build/Hilo3d.js.svg?compression=gzip&style=flat-square
|
|
126
126
|
[ci-url]:https://github.com/hiloteam/Hilo3d/actions?query=workflow%3A%22npm+test%22+branch%3Adev
|
|
127
127
|
[ci-image]:https://img.shields.io/github/actions/workflow/status/hiloteam/Hilo3d/npm_test.yml?branch=dev
|
|
128
|
-
[cdn-url]: https://cdn.jsdelivr.net/npm/hilo3d@1.18.0/build/Hilo3d.js
|
|
128
|
+
[cdn-url]: https://cdn.jsdelivr.net/npm/hilo3d@1.18.1-bone.0/build/Hilo3d.js
|
package/README_ZH.md
CHANGED
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
* 使用 script 标签加载 [cdn][cdn-url]
|
|
24
24
|
|
|
25
25
|
```
|
|
26
|
-
<script src='//cdn.jsdelivr.net/npm/hilo3d@1.18.0/build/Hilo3d.js'></script>
|
|
26
|
+
<script src='//cdn.jsdelivr.net/npm/hilo3d@1.18.1-bone.0/build/Hilo3d.js'></script>
|
|
27
27
|
```
|
|
28
28
|
|
|
29
29
|
### 文档
|
|
@@ -126,4 +126,4 @@
|
|
|
126
126
|
[size-image]:https://img.badgesize.io/hiloteam/hilo3d/master/build/Hilo3d.js.svg?compression=gzip&style=flat-square
|
|
127
127
|
[ci-url]:https://github.com/hiloteam/Hilo3d/actions?query=workflow%3A%22npm+test%22+branch%3Adev
|
|
128
128
|
[ci-image]:https://img.shields.io/github/actions/workflow/status/hiloteam/Hilo3d/npm_test.yml?branch=dev
|
|
129
|
-
[cdn-url]: https://cdn.jsdelivr.net/npm/hilo3d@1.18.0/build/Hilo3d.js
|
|
129
|
+
[cdn-url]: https://cdn.jsdelivr.net/npm/hilo3d@1.18.1-bone.0/build/Hilo3d.js
|