hilo3d 1.16.0 → 1.16.3-alpha.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 +20 -0
- package/README.md +4 -4
- package/README_ZH.md +4 -4
- package/build/Hilo3d.js +3 -3
- package/build/Hilo3d.single.js +2 -2
- package/build/math.single.js +2 -2
- package/package.json +1 -1
- package/types/index.d.ts +4 -0
- package/examples/js/.DS_Store +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,23 @@
|
|
|
1
|
+
## [1.16.2](https://github.com/hiloteam/Hilo3d/compare/1.16.1...1.16.2) (2022-03-24)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* in KHR_techniques_webgl, premultiplyAlpha of material default value should be false ([bdf4100](https://github.com/hiloteam/Hilo3d/commit/bdf41003b803c50fad7e43ec9992c6fc33a14111))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
## [1.16.1](https://github.com/hiloteam/Hilo3d/compare/1.16.0...1.16.1) (2022-03-23)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Features
|
|
14
|
+
|
|
15
|
+
* add _Time semantic ([4a9a43d](https://github.com/hiloteam/Hilo3d/commit/4a9a43de486e295a50863d3c064e6687098a44f1))
|
|
16
|
+
* add material.shaderName ([25b1880](https://github.com/hiloteam/Hilo3d/commit/25b1880aaf56c6e0b172e19c984741cc7a17a0b0))
|
|
17
|
+
* imporve parsing of glTF KHR_techniques_webgl extension ([ca69682](https://github.com/hiloteam/Hilo3d/commit/ca6968209eada71714591122a3ee64d74a482c71))
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
1
21
|
# [1.16.0](https://github.com/hiloteam/Hilo3d/compare/1.15.20...1.16.0) (2022-01-04)
|
|
2
22
|
|
|
3
23
|
|
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.16.
|
|
26
|
+
<script src='//cdn.jsdelivr.net/npm/hilo3d@1.16.2/build/Hilo3d.js'></script>
|
|
27
27
|
```
|
|
28
28
|
|
|
29
29
|
### Documentation
|
|
@@ -69,6 +69,8 @@ English | [简体中文](./README_ZH.md)
|
|
|
69
69
|
* [fog](https://hilo3d.js.org/examples/fog.html)
|
|
70
70
|
* [mesh_picker](https://hilo3d.js.org/examples/mesh_picker.html)
|
|
71
71
|
* [mouse_event](https://hilo3d.js.org/examples/mouse_event.html)
|
|
72
|
+
* [video](https://hilo3d.js.org/examples/video.html)
|
|
73
|
+
* [hdr](https://hilo3d.js.org/examples/hdr.html)
|
|
72
74
|
* [lifegame](https://hilo3d.js.org/examples/lifegame.html)
|
|
73
75
|
* [normal_map](https://hilo3d.js.org/examples/normal_map.html)
|
|
74
76
|
* [pbr](https://hilo3d.js.org/examples/pbr.html)
|
|
@@ -85,11 +87,9 @@ English | [简体中文](./README_ZH.md)
|
|
|
85
87
|
* [ssao](https://hilo3d.js.org/examples/ssao.html)
|
|
86
88
|
* [texture_data](https://hilo3d.js.org/examples/texture_data.html)
|
|
87
89
|
* [transparent](https://hilo3d.js.org/examples/transparent.html)
|
|
88
|
-
* [video_in_cube](https://hilo3d.js.org/examples/video_in_cube.html)
|
|
89
90
|
* [webgl_support](https://hilo3d.js.org/examples/webgl_support.html)
|
|
90
91
|
* [wireframe](https://hilo3d.js.org/examples/wireframe.html)
|
|
91
92
|
* [geometry_box](https://hilo3d.js.org/examples/geometry_box.html)
|
|
92
|
-
* [geometry_box2](https://hilo3d.js.org/examples/geometry_box2.html)
|
|
93
93
|
* [geometry_color](https://hilo3d.js.org/examples/geometry_color.html)
|
|
94
94
|
* [geometry_custom](https://hilo3d.js.org/examples/geometry_custom.html)
|
|
95
95
|
* [geometry_dynamic](https://hilo3d.js.org/examples/geometry_dynamic.html)
|
|
@@ -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.16.
|
|
125
|
+
[cdn-url]: https://cdn.jsdelivr.net/npm/hilo3d@1.16.2/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.16.
|
|
26
|
+
<script src='//cdn.jsdelivr.net/npm/hilo3d@1.16.2/build/Hilo3d.js'></script>
|
|
27
27
|
```
|
|
28
28
|
|
|
29
29
|
### 文档
|
|
@@ -69,6 +69,8 @@
|
|
|
69
69
|
* [fog](https://hilo3d.js.org/examples/fog.html)
|
|
70
70
|
* [mesh_picker](https://hilo3d.js.org/examples/mesh_picker.html)
|
|
71
71
|
* [mouse_event](https://hilo3d.js.org/examples/mouse_event.html)
|
|
72
|
+
* [video](https://hilo3d.js.org/examples/video.html)
|
|
73
|
+
* [hdr](https://hilo3d.js.org/examples/hdr.html)
|
|
72
74
|
* [lifegame](https://hilo3d.js.org/examples/lifegame.html)
|
|
73
75
|
* [normal_map](https://hilo3d.js.org/examples/normal_map.html)
|
|
74
76
|
* [pbr](https://hilo3d.js.org/examples/pbr.html)
|
|
@@ -85,11 +87,9 @@
|
|
|
85
87
|
* [ssao](https://hilo3d.js.org/examples/ssao.html)
|
|
86
88
|
* [texture_data](https://hilo3d.js.org/examples/texture_data.html)
|
|
87
89
|
* [transparent](https://hilo3d.js.org/examples/transparent.html)
|
|
88
|
-
* [video_in_cube](https://hilo3d.js.org/examples/video_in_cube.html)
|
|
89
90
|
* [webgl_support](https://hilo3d.js.org/examples/webgl_support.html)
|
|
90
91
|
* [wireframe](https://hilo3d.js.org/examples/wireframe.html)
|
|
91
92
|
* [geometry_box](https://hilo3d.js.org/examples/geometry_box.html)
|
|
92
|
-
* [geometry_box2](https://hilo3d.js.org/examples/geometry_box2.html)
|
|
93
93
|
* [geometry_color](https://hilo3d.js.org/examples/geometry_color.html)
|
|
94
94
|
* [geometry_custom](https://hilo3d.js.org/examples/geometry_custom.html)
|
|
95
95
|
* [geometry_dynamic](https://hilo3d.js.org/examples/geometry_dynamic.html)
|
|
@@ -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.16.
|
|
125
|
+
[cdn-url]: https://cdn.jsdelivr.net/npm/hilo3d@1.16.2/build/Hilo3d.js
|