hilo3d 1.15.17 → 1.16.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 +40 -0
- package/README.md +2 -2
- package/README_ZH.md +2 -2
- package/build/Hilo3d.js +4 -4
- package/build/Hilo3d.single.js +3 -3
- package/build/math.single.js +3 -3
- package/build/polyfill.js +2 -2
- package/examples/js/.DS_Store +0 -0
- package/package.json +2 -3
- package/types/index.d.ts +125 -38
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,43 @@
|
|
|
1
|
+
# [1.16.0](https://github.com/hiloteam/Hilo3d/compare/1.15.20...1.16.0) (2022-01-04)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* KHR_techniques_webgl parse texture bug ([f45879e](https://github.com/hiloteam/Hilo3d/commit/f45879ed7b826eb6049e14069120f0c2e3192f6b))
|
|
7
|
+
* pbr shader texture lod bug ([8256991](https://github.com/hiloteam/Hilo3d/commit/825699140ccc44bf7b9bbc83769526a5fac9584c))
|
|
8
|
+
* the nextTick callback of ticker should pass in the dt parameter ([db267cb](https://github.com/hiloteam/Hilo3d/commit/db267cb06d40bdb8ad63a3db7d14ca3ed1a43f71))
|
|
9
|
+
* unlit material transparency bug ([1006c60](https://github.com/hiloteam/Hilo3d/commit/1006c60340c511a908fd90d5ef8f331b1749d468))
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
### Features
|
|
13
|
+
|
|
14
|
+
* add JOINT & WEIGHT semantic ([2a9da6a](https://github.com/hiloteam/Hilo3d/commit/2a9da6aa59113c8e5f0d7cd4df46a938cd2e7d15))
|
|
15
|
+
* Add the function of dynamically modifying the targetFPS of the ticker ([e41f6cf](https://github.com/hiloteam/Hilo3d/commit/e41f6cf521040b0ffa0bf32b980eca1de0c15f84))
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
## [1.15.20](https://github.com/hiloteam/Hilo3d/compare/1.15.19...1.15.20) (2021-07-19)
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
### Bug Fixes
|
|
23
|
+
|
|
24
|
+
* the webglContextLost & webglContextRestored event should be triggered last ([87c9d2d](https://github.com/hiloteam/Hilo3d/commit/87c9d2d8ed9b2005f990db6acdab2e1e107058d9))
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
## [1.15.19](https://github.com/hiloteam/Hilo3d/compare/1.15.18...1.15.19) (2021-05-20)
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
### Features
|
|
32
|
+
|
|
33
|
+
* add wrapS & wrapT property of the framebuffer ([eaae512](https://github.com/hiloteam/Hilo3d/commit/eaae5129fc4324ece40d652bf7b76c625ef36d9b))
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
## [1.15.18](https://github.com/hiloteam/Hilo3d/compare/1.15.17...1.15.18) (2021-05-14)
|
|
38
|
+
* update doc & .d.ts
|
|
39
|
+
|
|
40
|
+
|
|
1
41
|
## [1.15.17](https://github.com/hiloteam/Hilo3d/compare/1.15.16...1.15.17) (2021-02-22)
|
|
2
42
|
|
|
3
43
|
|
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.
|
|
26
|
+
<script src='//cdn.jsdelivr.net/npm/hilo3d@1.16.0/build/Hilo3d.js'></script>
|
|
27
27
|
```
|
|
28
28
|
|
|
29
29
|
### Documentation
|
|
@@ -122,4 +122,4 @@ English | [简体中文](./README_ZH.md)
|
|
|
122
122
|
[size-image]:https://img.badgesize.io/hiloteam/hilo3d/master/build/Hilo3d.js.svg?compression=gzip&style=flat-square
|
|
123
123
|
[ci-url]:https://github.com/hiloteam/Hilo3d/actions?query=workflow%3A%22npm+test%22+branch%3Adev
|
|
124
124
|
[ci-image]:https://img.shields.io/github/workflow/status/hiloteam/Hilo3d/npm%20test?style=flat-square
|
|
125
|
-
[cdn-url]: https://cdn.jsdelivr.net/npm/hilo3d@1.
|
|
125
|
+
[cdn-url]: https://cdn.jsdelivr.net/npm/hilo3d@1.16.0/build/Hilo3d.js
|
package/README_ZH.md
CHANGED
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
* 使用 script 标签加载 [cdn][cdn-url]
|
|
24
24
|
|
|
25
25
|
```
|
|
26
|
-
|
|
26
|
+
<script src='//cdn.jsdelivr.net/npm/hilo3d@1.16.0/build/Hilo3d.js'></script>
|
|
27
27
|
```
|
|
28
28
|
|
|
29
29
|
### 文档
|
|
@@ -122,4 +122,4 @@
|
|
|
122
122
|
[size-image]:https://img.badgesize.io/hiloteam/hilo3d/master/build/Hilo3d.js.svg?compression=gzip&style=flat-square
|
|
123
123
|
[ci-url]:https://github.com/hiloteam/Hilo3d/actions?query=workflow%3A%22npm+test%22+branch%3Adev
|
|
124
124
|
[ci-image]:https://img.shields.io/github/workflow/status/hiloteam/Hilo3d/npm%20test?style=flat-square
|
|
125
|
-
[cdn-url]: https://cdn.jsdelivr.net/npm/hilo3d@1.
|
|
125
|
+
[cdn-url]: https://cdn.jsdelivr.net/npm/hilo3d@1.16.0/build/Hilo3d.js
|