Interface ITesseraTileOutput
Namespace: Tessera
Assembly: Tessera.dll
Syntax
public interface ITesseraTileOutput
Properties
IsEmpty
Is the output currently empty.
Declaration
bool IsEmpty { get; }
Property Value
Type | Description |
---|---|
bool |
SupportsIncremental
Is this output safe to use with AnimatedGenerator
Declaration
bool SupportsIncremental { get; }
Property Value
Type | Description |
---|---|
bool |
Methods
ClearTiles(IEngineInterface)
Clear the output
Declaration
void ClearTiles(IEngineInterface engine)
Parameters
Type | Name | Description |
---|---|---|
IEngineInterface | engine |
UpdateTiles(TesseraCompletion, IEngineInterface)
Update a chunk of tiles. If incremental updates are supported, then:
- Tiles can replace other tiles, as indicated by the Cells field.
- A tile of null indicates that the tile should be erased
Declaration
void UpdateTiles(TesseraCompletion completion, IEngineInterface engine)
Parameters
Type | Name | Description |
---|---|---|
TesseraCompletion | completion | |
IEngineInterface | engine |