33 lines
934 B
Markdown
33 lines
934 B
Markdown
# 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
|
|
}
|
|
```
|