rex_layout2board
Introduction
This plugin could help user put chess/tiles on an orthogonal or isometric, or hexagonal board object, the chess/tiles could be placed at layout editor.
This plugin could help user put chess/tiles on an orthogonal or isometric, or hexagonal board object, the chess/tiles could be placed at layout editor.
Usage
Enable the "Snap to grid", and configure the "Grid width" and "Grid height" in ribbon of layout editor,
Set the "Width" and "Height" in properties table in layout (rex_board_squareTx, or rex_board_hexTx) of board object, then call "Action:Put chess on board" to put chess on a board object, remember to put tile (z=0) before put other chess.
It will pop alerts if put chess at an non-empty cell, since each cell only could have one chess. User might need to remove overlapping manually in layout editor.
It will pop alerts if put chess at an non-empty cell, since each cell only could have one chess. User might need to remove overlapping manually in layout editor.
Grid width and Grid height
For orthogonal board
Sample capx
The configuration of "Grid width" and "Grid height" in ribbon are the same as "Width" and "Height" in layout (rex_board_squareTx, or rex_board_hexTx).
Sample capx
The configuration of "Grid width" and "Grid height" in ribbon are the same as "Width" and "Height" in layout (rex_board_squareTx, or rex_board_hexTx).
- Grid width = "Width"
- Grid height = "Height"
For isometric board
Sample capx
The configuration of "Grid width" and "Grid height" in ribbon are half of "Width" and "Height" in layout (rex_board_squareTx, or rex_board_hexTx). Each row will be staggered.
Sample capx
The configuration of "Grid width" and "Grid height" in ribbon are half of "Width" and "Height" in layout (rex_board_squareTx, or rex_board_hexTx). Each row will be staggered.
- Grid width = 0.5 * "Width"
- Grid height = 0.5 * "Height"
For hexagonal board
Sample capx
The configuration of "Grid height" in ribbon is the same as "Height" for "Left-Right" axis direction. "Grid width" will be half of "Width". Each row will be staggered.
Sample capx
The configuration of "Grid height" in ribbon is the same as "Height" for "Left-Right" axis direction. "Grid width" will be half of "Width". Each row will be staggered.
- Grid width = 0.5 * "Width"
- Grid height = "Height"
The configuration of "Grid width" in ribbon is the same as "Width" for "Top-Down" axis direction. "Grid height" will be half of "Height". Each col will be staggered.
- Grid width = "Width"
- Grid height = 0.5 * "Height"