@combos-fun/plugin-renderer-3d-graphics 0.0.37 → 0.0.39
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/agent-skill.md +1 -1
- package/package.json +4 -4
package/agent-skill.md
CHANGED
|
@@ -39,7 +39,7 @@ Shape → Three.js geometry: `box → BoxGeometry`, `sphere → SphereGeometry`,
|
|
|
39
39
|
|
|
40
40
|
| Symptom | Fix |
|
|
41
41
|
|---------|-----|
|
|
42
|
-
| Plane invisible from one side |
|
|
42
|
+
| Plane invisible from one side | There is no `doubleSide` field. Rotate the plane so the camera sees the front |
|
|
43
43
|
| Sphere very dark | Increase scene light or use `MeshBasicMaterial`-style flat shading (not exposed; use `Img3D` if you need flat) |
|
|
44
44
|
| Wireframe shimmer | `wireframe: true` — that's by design |
|
|
45
45
|
| Sync drift with `Physics3D` | Make sure both are on the same `GameObject`; `Physics3D.update()` writes positions back automatically |
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@combos-fun/plugin-renderer-3d-graphics",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.39",
|
|
4
4
|
"description": "Procedural 3D primitive shapes",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"module": "dist/plugin-renderer-3d-graphics.esm.js",
|
|
@@ -26,9 +26,9 @@
|
|
|
26
26
|
"pluginManifest": "./combos-plugin.json"
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@combos-fun/engine": "0.0.
|
|
30
|
-
"@combos-fun/inspector-decorator": "0.0.
|
|
31
|
-
"@combos-fun/plugin-renderer-3d": "0.0.
|
|
29
|
+
"@combos-fun/engine": "0.0.39",
|
|
30
|
+
"@combos-fun/inspector-decorator": "0.0.39",
|
|
31
|
+
"@combos-fun/plugin-renderer-3d": "0.0.39",
|
|
32
32
|
"three": "^0.172.0"
|
|
33
33
|
},
|
|
34
34
|
"keywords": [
|