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
+32
View File
@@ -0,0 +1,32 @@
# WhiteboardWall
### Type
The VideoWall is a 1,8m x 0,9m opaque Plane.
Its Origin is at the Bottom-Center.
Spawnpoint should be {0,1,0} so its 1m above the floor.
### 3D
An interactive whiteboard surface that users can draw on collaboratively.
### Custom Args:
| Key | Type | Implemented | Description |
|---|---|---|---|
| grabable | `"true"` / `"false"` | ⚠️ | Whether the item can be grabbed in-experience (common to all types) |
### Special Notes:
**Not implemented in save.** The Whiteboard is not serialized to the database JSON by the Creator. It can be placed in the scene but its state will not persist between sessions.
### Example:
```json
{
"position": { "x": 14.0, "y": 1.0, "z": -6.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": "WhiteboardWall",
"item-custom-args": [],
"item-custom-args-adv": null
}
```