Cube

cube

Just Cube.

Properties

property display: cube;
Required YES
property wall: SELECTOR-TO-WALL | null;
Default null

Wall of side faces.

property roof: SELECTOR-TO-WALL | null;
Default null

Wall of top face.

Example

house {
    display: cube;
    width: 100;
    depth: 100;
    height: 100;

    roof: wall.roof;
    wall: wall.brick;
}

You can try in on https://pixelopolis.herokuapp.com/examples/Basic-shapes/Cube