rhodonite 0.17.8 → 0.18.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/README.md +4 -3
- package/VERSION-FILE +1 -1
- package/dist/esm/index.d.ts +557 -395
- package/dist/esm/index.js +658 -642
- package/dist/esmdev/index.d.ts +557 -395
- package/dist/esmdev/index.js +19643 -18320
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -12,7 +12,7 @@ Rhodonite is a Web3D(WebGL2/WebGPU) library written in TypeScript.
|
|
|
12
12
|
|
|
13
13
|
https://librn.com/
|
|
14
14
|
|
|
15
|
-
##
|
|
15
|
+
## Features
|
|
16
16
|
|
|
17
17
|
* Component-oriented
|
|
18
18
|
* Blittable Memory Architecture (Original GPU data storage system with floating point texture)
|
|
@@ -20,6 +20,7 @@ https://librn.com/
|
|
|
20
20
|
* Node-based Shader System
|
|
21
21
|
* Support loading the following 3D model files: [glTF2](https://github.com/KhronosGroup/glTF), glTF1, [VRM](https://vrm.dev/en/)
|
|
22
22
|
* Support [Draco compression](https://google.github.io/draco/), [Basis Universal](https://github.com/BinomialLLC/basis_universal) and [KTX2](http://github.khronos.org/KTX-Specification/), etc
|
|
23
|
+
* Support [Effekseer](https://effekseer.github.io/en/) for particle system
|
|
23
24
|
* WebGPU Support
|
|
24
25
|
* WebXR(VR) Support (in both WebGL & WebGPU)
|
|
25
26
|
|
|
@@ -34,7 +35,7 @@ For example, Rhodonite can handle and blend all morph targets (38 targets) of VR
|
|
|
34
35
|
## Viewer
|
|
35
36
|
|
|
36
37
|
You can try our library via https://editor.librn.com/.
|
|
37
|
-
This viewer supports glTF/VRM files Drag & Drop to display.
|
|
38
|
+
This viewer supports glTF/VRM/efkpkg(Effekseer package) files Drag & Drop to display.
|
|
38
39
|
(Drag & Drop all files if glTF data consists of multiple files.)
|
|
39
40
|
|
|
40
41
|
Poly model
|
|
@@ -76,7 +77,7 @@ If you get an error like "webxr-input-profiles not found" when building a projec
|
|
|
76
77
|
```html
|
|
77
78
|
<body>
|
|
78
79
|
<canvas id="world"></canvas>
|
|
79
|
-
<script src="../../../dist/
|
|
80
|
+
<script src="../../../dist/iife/rhodonite.min.js"></script>
|
|
80
81
|
<script>
|
|
81
82
|
// Init Rhodonite
|
|
82
83
|
await Rn.System.init({
|
package/VERSION-FILE
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
v0.
|
|
1
|
+
v0.18.0-0-gb3b937747-dirty
|
|
2
2
|
main
|