added most objects

This commit is contained in:
TJ
2026-06-11 14:45:36 +02:00
parent 71c21cf536
commit 17b3bd8ff8
9 changed files with 264 additions and 2 deletions
+34
View File
@@ -0,0 +1,34 @@
# Sphere
### Type
pre-defined
### 3D
The Sphere is a 1m diameter sphere (radius 0.5m).
Its Origin is in the Geometric Center.
Spawnpoint should be {0,0.5,0} so it rests on the floor.
### Custom Args:
| Key | Type | Implemented | Description |
|---|---|---|---|
| color | hexColor | ✔️ | Color of the sphere material |
| grabable | `"true"` / `"false"` | ⚠️ | Whether the item can be grabbed in-experience (common to all types) |
### Special Notes:
The Sphere has a collider and is a "Teleportation Area".
### Example:
```json
{
"position": { "x": 6.0, "y": 0.5, "z": 0.0 },
"rotation": { "x": 0.0, "y": 0.0, "z": 0.0 },
"scale": { "x": 1.0, "y": 1.0, "z": 1.0 },
"type": "pre-defined",
"resourcename": "Sphere",
"item-custom-args": [
{ "argument": "color", "value": "#ff0000" }
],
"item-custom-args-adv": null
}
```