|
Nostalgia
2.1.5
|
Do Map.RemoveTile() asynchronously. More...
Public Member Functions | |
| RemoveTileAsync (Map map, bool autoTiling, string title, string info) | |
| It creates a new RemoveTileAsync. More... | |
| void | Add (Cell cell) |
| Add the cell that you want to remove. More... | |
| override IEnumerator | Process () |
| Method for co-routine that performs processing More... | |
Public Member Functions inherited from Async | |
| void | Discontinue () |
| Discontinue. More... | |
Additional Inherited Members | |
Protected Attributes inherited from Async | |
| bool | _Discontinuable = false |
| float | _Progress |
| bool | _IsDone |
| string | _Title |
| string | _Info |
Properties inherited from Async | |
| bool | discontinuable [get] |
| Flag as to whether it can be discontinued. More... | |
| float | progress [get] |
| progress More... | |
| bool | isDone [get] |
| Whether or not it was completed. More... | |
| bool | isDiscontinued [get] |
| Whether it was discontinued or not. More... | |
| string | title [get] |
| Of processing the contents title More... | |
| string | info [get] |
| Description of the processing content More... | |
Do Map.RemoveTile() asynchronously.
To start the process, please call StartCoroutine (RemoveTileAsync.Process());.
| RemoveTileAsync | ( | Map | map, |
| bool | autoTiling, | ||
| string | title, | ||
| string | info | ||
| ) |
It creates a new RemoveTileAsync.
| map | Map |
| autoTiling | Whether or not to perform an auto-tile |
| title | title of the processing contents |
| info | Description of the processing contents |
| void Add | ( | Cell | cell | ) |
Add the cell that you want to remove.
| cell | Cells to be removed. |
|
virtual |
Method for co-routine that performs processing
To start the process, please call StartCoroutine(RemoveTileAsync.Process());.
Implements Async.