@minecraft/creator-tools
Version:
Minecraft Creator Tools command line and libraries.
31 lines (30 loc) • 819 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.FenceConnectivity = void 0;
/**
* Returns information about whether this fence is connected to
* other fences in several directions.
*/
class FenceConnectivity {
/**
* Represents whether this fence block is connected to another
* fence to the east (x + 1).
*/
"east";
/**
* Represents whether this fence block is connected to another
* fence to the north (z - 1).
*/
"north";
/**
* Represents whether this fence block is connected to another
* fence to the south (z + 1).
*/
"south";
/**
* Represents whether this fence block is connected to another
* fence to the west (x - 1).
*/
"west";
}
exports.FenceConnectivity = FenceConnectivity;