◆ GetWorldSpaceSafeDistance()
float Terrain::ClipmapBounds::GetWorldSpaceSafeDistance |
( |
| ) |
const |
Returns the safe x and y distance from the center in world space. This is based on the scale, clipmap size, and m_clipmapUpdateMultiple. For example, a clipmap size 1024 with scale 0.25 and margin of 4 would have a safe distance of (1024 * 0.5 - 4) * 0.25 = 127.0f.
◆ TransformRegion() [1/3]
ClipmapBoundsRegionList Terrain::ClipmapBounds::TransformRegion |
( |
Aabb2i |
clipSpaceRegion | ) |
|
Takes in a single unscaled clipmap space region and transforms it into 0-4 regions in the clipmap clamped to the bounds of the clipmap.
◆ TransformRegion() [2/3]
ClipmapBoundsRegionList Terrain::ClipmapBounds::TransformRegion |
( |
AZ::Aabb |
worldSpaceRegion | ) |
|
Takes in a single world space aabb and transforms it into 0-4 regions in the clipmap clamped to the bounds of the clipmap.
◆ TransformRegion() [3/3]
ClipmapBoundsRegionList Terrain::ClipmapBounds::TransformRegion |
( |
const AZ::Vector2 & |
worldSpaceMin, |
|
|
const AZ::Vector2 & |
worldSpaceMax |
|
) |
| |
Takes in a single world space min and max 2d bounds and transforms it into 0-4 regions in the clipmap clamped to the bounds of the clipmap.
◆ UpdateCenter() [1/2]
ClipmapBoundsRegionList Terrain::ClipmapBounds::UpdateCenter |
( |
const AZ::Vector2 & |
newCenter, |
|
|
AZ::Aabb * |
untouchedRegion = nullptr |
|
) |
| |
Updates the clipmap bounds using a world coordinate center position and returns 0-6 regions that need to be updated due to moving beyond the margins. These update regions will always be at least the size of the margin, and will represent horizontal and/or vertical strips along the edges of the clipmap. An optional untouched region aabb can be passed to this function to get an aabb of areas inside the bounds of the clipmap but not updated by the center moving. This can be useful in cases where part of the bounds of the clipmap is dirty, but areas that will already be updated due to the center moving shouldn't be updated twice.
◆ UpdateCenter() [2/2]
ClipmapBoundsRegionList Terrain::ClipmapBounds::UpdateCenter |
( |
const Vector2i & |
newCenter, |
|
|
AZ::Aabb * |
untouchedRegion = nullptr |
|
) |
| |
Updates the clipmap bounds using a position in clipmap space (no scaling) and returns 0-6 regions that need to be updated due to moving beyond the margins. These update regions will always be at least the size of the margin, and will represent horizontal and/or vertical strips along the edges of the clipmap. An optional untouched region aabb can be passed to this function to get an aabb of areas inside the bounds of the clipmap but not updated by the center moving. This can be useful in cases where part of the bounds of the clipmap is dirty, but areas that will already be updated due to the center moving shouldn't be updated twice.
The documentation for this class was generated from the following file:
- Gems/Terrain/Code/Source/TerrainRenderer/ClipmapBounds.h