Class TesseraCompletion
Returned by TesseraGenerator after generation finishes
Namespace: Tessera
Assembly: cs.temp.dll.dll
Syntax
public class TesseraCompletion
Properties
backtrackCount
The number of times the generation process backtracked.
Declaration
public int backtrackCount { get; set; }
Property Value
Type | Description |
---|---|
Int32 |
contradictionLocation
If success is false, indicates where the generation failed.
Declaration
public Vector3Int? contradictionLocation { get; set; }
Property Value
Type | Description |
---|---|
Nullable<Vector3Int> |
grid
Gives details about the cells.
Declaration
public IGrid grid { get; set; }
Property Value
Type | Description |
---|---|
IGrid |
isIncremental
Indicates these instances should be added to the previous set of instances.
Declaration
public bool isIncremental { get; set; }
Property Value
Type | Description |
---|---|
Boolean |
retries
The number of times the generation process was restarted.
Declaration
public int retries { get; set; }
Property Value
Type | Description |
---|---|
Int32 |
success
True if all tiles were successfully found.
Declaration
public bool success { get; set; }
Property Value
Type | Description |
---|---|
Boolean |
tileInstances
The list of tiles to create.
Declaration
public IList<TesseraTileInstance> tileInstances { get; set; }
Property Value
Type | Description |
---|---|
IList<TesseraTileInstance> |