35 lines
853 B
Markdown
35 lines
853 B
Markdown
# 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
|
|
}
|
|
```
|