scad-gltf 0.2.1 → 0.2.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.
- package/bevy/README.md +46 -0
- package/bevy/examples/LICENSE +21 -0
- package/bevy/examples/README.md +58 -0
- package/bevy/examples/package.json +5 -0
- package/bevy/examples/packman_3d.js +2415 -0
- package/package.json +3 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "scad-gltf",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.2",
|
|
4
4
|
"description": "WASM build of a custom OpenSCAD fork that compiles .scad scripts directly to glTF/GLB with PBR and animation support",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./src/ext/openscad.js",
|
|
@@ -22,6 +22,7 @@
|
|
|
22
22
|
"3d",
|
|
23
23
|
"cad",
|
|
24
24
|
"godot",
|
|
25
|
+
"bevy",
|
|
25
26
|
"mcp",
|
|
26
27
|
"ai"
|
|
27
28
|
],
|
|
@@ -29,6 +30,7 @@
|
|
|
29
30
|
"bin",
|
|
30
31
|
"src",
|
|
31
32
|
"godot",
|
|
33
|
+
"bevy",
|
|
32
34
|
"editor/dist"
|
|
33
35
|
],
|
|
34
36
|
"bin": {
|