Files
xrwise-datastructure/objects/Wall.md
T
2026-06-11 14:45:36 +02:00

35 lines
899 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# Wall
### Type
pre-defined
### 3D
The Wall is a flat rectangular Cube with dimensions 10m × 5m × 0.1m.
Its Origin is at the Geometric Center.
Spawnpoint should be {0,2.5,0} (half height above floor).
### Custom Args:
| Key | Type | Implemented | Description |
|---|---|---|---|
| color | hexColor | ✔️ | Color of the wall material |
| opacity | float (01) | ⚠️ (not in Unity) | Transparency of the wall material |
| grabable | `"true"` / `"false"` | ⚠️ | Whether the item can be grabbed in-experience (common to all types) |
### Special Notes:
### Example:
```json
{
"position": { "x": 0.0, "y": 2.5, "z": -5.0 },
"rotation": { "x": 0.0, "y": 0.0, "z": 0.0 },
"scale": { "x": 1.0, "y": 2.0, "z": 1 },
"type": "pre-defined",
"resourcename": "Wall",
"item-custom-args": [
{ "argument": "color", "value": "#ffffff" }
],
"item-custom-args-adv": null
}
```