ワンクリックで
per-building-infrastructure
Pattern for attaching infrastructure (canals, beacons, paths) to each building in the village
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Pattern for attaching infrastructure (canals, beacons, paths) to each building in the village
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
How to create reference documentation for complex coordinate systems and building constraints
Prevents subsystems from modifying blocks within placed building volumes using 3D bounding box clipping
Correctly place directional blocks (doors, levers, torches, signs, banners, stairs) in Minecraft via RCON
Ensures all build areas are chunk-loaded before placing blocks via /fill commands
NuGet packaging patterns for the Aspire.Hosting.Minecraft package
Validate side effects after build/deploy operations with graceful degradation
| name | per-building-infrastructure |
| description | Pattern for attaching infrastructure (canals, beacons, paths) to each building in the village |
| domain | minecraft-world-building |
| confidence | medium |
| source | earned |
Each building in the Aspire village can have associated infrastructure: a canal along its back, a beacon on its right side, a path at its entrance. These per-building features must coordinate with the village layout (neighborhoods, spacing) and avoid colliding with each other.
Each building gets a canal segment running along its back (northern edge). The segment runs from the building's western edge to the trunk canal on the west side of town.
int canalZ = buildingZ - 2; // 2 blocks north of building
int canalStartX = buildingX; // building's western edge
int canalEndX = trunkX; // trunk canal X position
All per-building infrastructure is positioned relative to the building's origin (x, z) and StructureSize:
A single N-S trunk canal on the west side of town collects all E-W branch canals. The trunk runs from the northernmost building row to the lake at the southern edge.
Per-building infrastructure must use the BuildingProtectionService to clip fills around buildings. Even if Y ranges don't currently overlap, this is a safety net for future changes.
Infrastructure systems must run AFTER buildings are placed so protection zones are registered: