|
| override string | Name [get] |
| |
| override string | Name [get] |
| |
| override int | ExpectedMarks [get] |
| |
| abstract int | ExpectedMarks [get] |
| | Expected number of marks to pass to DrawOperation.Prepare()
|
| |
| IBrushInstance | Brush [get, set] |
| | Brush used to determine which blocks to place. Must be assigned before DrawOperation.Prepare() is called.
|
| |
| BlockChangeContext | Context [get, set] |
| | Block change context, to be reported to BlockDB and Player.PlacingBlock/PlacedBlock events. Should include BlockChangeContext.Drawn flag.
|
| |
| Vector3I[] | Marks [get, set] |
| | Marks given by the player to this command. Marks could come from either clicks or /Mark command. Set by DrawOperation.Prepare()
|
| |
| DateTime | StartTime [get, set] |
| | Time when the draw operatation began. Set by DrawOperation.Begin()
|
| |
| BoundingBox | Bounds [get, set] |
| | Area that bounds the DrawOperation's extent, if possible to estimate in advance. Used for logging. Should be assigned, as accurately as possible, before DrawOp finishes.
|
| |
| bool | HasBegun [get, set] |
| | Whether this operation has been started (queued for processing on the Map).
|
| |
| bool | IsDone [get, set] |
| | Whether this operation is done (has finished or had been cancelled).
|
| |
| bool | IsCancelled [get, set] |
| | Whether this operation has been cancelled (e.g. by /Undo or /WLock).
|
| |
| int | BlocksProcessed [get, set] |
| | Number of blocks/coordinates that were considered for drawing.
|
| |
| int | BlocksUpdated [get, set] |
| | Number of blocks/coordinates that ended up being changed/updated.
|
| |
| int | BlocksDenied [get, set] |
| | Number of blocks/coordinates that were supposed to be changed/updated, but were left untouched due to permission issues.
|
| |
| int | BlocksSkipped [get, set] |
| | Number of blocks/coordinates that were processed, and left untouched: either because the Brush decided to skip it, or because map's current block matched the desired blocktype.
|
| |
| int | BlocksTotalEstimate [get, set] |
| | Estimate of total number of blocks that will be processed by this command. Should be as accurate as reasonably possible by DrawOperation.Prepare(). Used for volume permission checks. Must not be negative.
|
| |
| int | BlocksLeftToProcess [get] |
| | Estimated total blocks left to process.
|
| |
| int | PercentDone [get] |
| | Approximate completion percentage of this command.
|
| |
| int | AlternateBlockIndex [get, set] |
| | Whether the brush should use alternate block (if available) for filling insides of hollow DrawOps. Currently only supported by NormalBrush. Used with CuboidH/CuboidW/EllipsoidH drawops.
|
| |
| abstract string | Name [get] |
| | General name of this type of draw operation. Should be same for all instances.
|
| |
| virtual string | Description [get] |
| | Compact description of this specific draw operation, with any instance-specific parameters, and the brush's instance description.
|
| |
| bool | AnnounceCompletion [get, set] |
| | Whether completion or cancellation of this DrawOperation should be announced to Player.
|
| |
| bool | LogCompletion [get, set] |
| | Whether completion or cancellation of this DrawOperation should be logged.
|
| |
| bool | TimeToEndBatch [get] |
| |
Draw operation that creates a solid sphere.