Copyright | (c) 2013-2021 Brendan Hay |
---|---|
License | Mozilla Public License, v. 2.0. |
Maintainer | Brendan Hay <brendan.g.hay+amazonka@gmail.com> |
Stability | auto-generated |
Portability | non-portable (GHC extensions) |
Safe Haskell | None |
Documentation
data WorldCount Source #
The number of worlds that will be created. You can configure the number
of unique floorplans and the number of unique interiors for each floor
plan. For example, if you want 1 world with 20 unique interiors, you set
floorplanCount = 1
and interiorCountPerFloorplan = 20
. This will
result in 20 worlds (floorplanCount
* interiorCountPerFloorplan)
.
If you set floorplanCount = 4
and interiorCountPerFloorplan = 5
,
there will be 20 worlds with 5 unique floor plans.
See: newWorldCount
smart constructor.
WorldCount' | |
|
Instances
newWorldCount :: WorldCount Source #
Create a value of WorldCount
with all optional fields omitted.
Use generic-lens or optics to modify other optional fields.
The following record fields are available, with the corresponding lenses provided for backwards compatibility:
$sel:interiorCountPerFloorplan:WorldCount'
, worldCount_interiorCountPerFloorplan
- The number of unique interiors per floorplan.
$sel:floorplanCount:WorldCount'
, worldCount_floorplanCount
- The number of unique floorplans.
worldCount_interiorCountPerFloorplan :: Lens' WorldCount (Maybe Int) Source #
The number of unique interiors per floorplan.
worldCount_floorplanCount :: Lens' WorldCount (Maybe Int) Source #
The number of unique floorplans.