Show / Hide Table of Contents

Class TesseraCompletion

Returned by TesseraGenerator after generation finishes

Inheritance
Object
TesseraCompletion
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>

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>
Back to top Generated by DocFX