@myned-ai/gsplat-flame-avatar-renderer 1.0.1 → 1.0.2

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.
Files changed (2) hide show
  1. package/README.md +3 -8
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -124,14 +124,9 @@ avatar.zip
124
124
 
125
125
  ### Rendering Pipeline
126
126
 
127
- ```mermaid
128
- flowchart LR
129
- A[Loading<br/>PLY] --> B[Initialization<br/>Viewer]
130
- B --> C[Scene Setup<br/>SplatMesh]
131
- C --> D[Animation<br/>FLAME]
132
- D --> E[Transform<br/>Update]
133
- E --> F[Sorting<br/>WebAssembly]
134
- F --> G[Drawing<br/>WebGL]
127
+ ```
128
+ Loading (PLY) → Initialization (Viewer) → Scene Setup (SplatMesh) → Animation (FLAME)
129
+ Transform Update → Sorting (WebAssembly) → Drawing (WebGL)
135
130
  ```
136
131
 
137
132
  1. **Loading**: Assets fetched from ZIP, PLY parsed via INRIAV1PlyParser
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@myned-ai/gsplat-flame-avatar-renderer",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "FLAME-enabled Gaussian Splatting library for animated avatars with ARKit blendshape support",
5
5
  "main": "dist/gsplat-flame-avatar-renderer.umd.js",
6
6
  "module": "dist/gsplat-flame-avatar-renderer.esm.js",