Struct WaterSearchParameters
Structure that holds the input parameters of the search.
Inherited Members
Namespace: UnityEngine.Rendering.HighDefinition
Assembly: Unity.RenderPipelines.HighDefinition.Runtime.dll
Syntax
public struct WaterSearchParameters
Fields
error
Target error value at which the algorithm should stop.
Declaration
public float error
Field Value
Type | Description |
---|---|
float |
maxIterations
Number of iterations of the search algorithm.
Declaration
public int maxIterations
Field Value
Type | Description |
---|---|
int |
startPosition
Position that the search starts from. Can be used as a hint for the search algorithm.
Declaration
public float3 startPosition
Field Value
Type | Description |
---|---|
float3 |
targetPosition
Target position that the search needs to evaluate the height at.
Declaration
public float3 targetPosition
Field Value
Type | Description |
---|---|
float3 |