| 509 | } |
| 510 | |
| 511 | List<RectI> WorldLayout::previewExpandBiomeRegion(Vec2I const& position, int width) const { |
| 512 | auto layerAndCell = findLayerAndCell(position[0], position[1]); |
| 513 | auto targetLayer = m_layers[layerAndCell.first]; |
| 514 | |
| 515 | auto expandResult = expandRegionInLayer(targetLayer, layerAndCell.second, width); |
| 516 | |
| 517 | return expandResult.second; |
| 518 | } |
| 519 | |
| 520 | String WorldLayout::setLayerEnvironmentBiome(Vec2I const& position) { |
| 521 | auto layerAndCell = findLayerAndCell(position[0], position[1]); |
no outgoing calls
no test coverage detected