GridBrush

class in UnityEditor

/

Hereda de:GridBrushBase

Cambiar al Manual

Descripción

Default built-in brush for painting or erasing tiles and/or gamobjects on a grid.

Default brush is meant for two things: Authoring GameObjects on a grid and authoring tiles on a grid. It can be used for both at the same time if necessary. Basically the default brush allows you to pick and paste tiles and GameObjects from one area to another.

Tiles in a tilemap are considered to be active for brush editing if a GameObject with Tilemap is currently selected. GameObjects are considered to be active for brush editing if their parent GameObject is currently selected.

For example: A new default brush with size of 2x3 is generated as a result of Scene view picking operation. The new instance contains six cells (BrushCell) and the cells are fed with tiles & GameObjects from the picking area.

Later when this brush is used in a painting operation, all the tiles and GameObjects contained in the cells are set/cloned into a new Scene position.

When creating custom brushes, it is recommended to inherit GridBrushBase by default. Inheriting GridBrush is possible when similar functionality is required, but extending it has its limits compared to base class.

It is also possible to replace the default GridBrush from the Tile Palette brush list completely by using the GridDefaultBrush attribute on one of your custom brushes and promote it to become a new default brush of the project. This is useful when higher level brush can operate as a default and protect designers from accidentally using the built-in one.

Variables

cellCountNumber of brush cells in the brush.
cellsAll the brush cells the brush holds.
pivotPivot of the brush.
sizeSize of the brush in cells.

Funciones Públicas

BoxEraseErases tiles and GameObjects from given bounds within the selected layers.
BoxFillBox fills tiles and GameObjects into given bounds within the selected layers.
EraseErases tiles and GameObjects in a given position within the selected layers.
FlipFlips the brush in the given axis.
FloodFillFlood fills tiles and GameObjects starting from a given position within the selected layers.
GetCellIndexGets the index to the GridBrush.BrushCell based on the position of the BrushCell.
GetCellIndexWrapAroundGets the index to the GridBrush.BrushCell based on the position of the BrushCell. Wraps each coordinate if it is larger than the size of the GridBrush.
InitInitializes the content of the GridBrush.
MoveEndMoveEnd is called when user has ended the move of the area previously selected with the selection marquee.
MoveStartMoveEnd is called when user starts moving the area previously selected with the selection marquee.
PaintPaints tiles and GameObjects into a given position within the selected layers.
PickPicks tiles from selected tile maps and child GameObjects, given the coordinates of the cells.
ResetClear all data of the brush.
RotateRotates the brush by 90 degrees in the given direction.
SetColorSets a tint color at the position in the brush.
SetMatrixSets a transform matrix at the position in the brush. This matrix is used specifically for tiles on a Tilemap and not GameObjects of the brush cell.
SetTileSets a Tile at the position in the brush.
UpdateSizeAndPivotUpdates the size, pivot and the number of layers of the brush.

Miembros heredados

Variables

hideFlagsShould the object be hidden, saved with the Scene or modifiable by the user?
nameEl nombre del objeto.

Funciones Públicas

ChangeZPositionChanges the Z position of the GridBrushBase.
MoveMove is called when user moves the area previously selected with the selection marquee.
ResetZPositionResets Z position changes of the GridBrushBase.
SelectSelect an area of a grid.
GetInstanceIDDevuelve el id de la instancia del objeto.
ToStringReturns the name of the GameObject.

Funciones Estáticas

DestroyElimina un gameobject, componente o asset.
DestroyImmediateDestroys the object obj immediately. You are strongly recommended to use Destroy instead.
DontDestroyOnLoadDo not destroy the target Object when loading a new Scene.
FindObjectOfTypeDevuelve el primer objeto activo cargado de tipo type.
FindObjectsOfTypeDevuelve una lista de todos los objetos activos cargados de tipo type.
InstantiateClona el objeto original y devuelve el clon.
CreateInstanceCrea una instancia de un objeto scriptable.

Operadores

bool¿Existe el objeto?
operator !=Compare si dos objetos se refieren a un objeto diferente.
operator ==Compara dos referencias de objeto para ver si se refieren al mismo objeto.

Mensajes

AwakeEsta función se llama cuando el script ScriptableObject empieza.
OnDestroyEsta función se llama cuando el objeto scriptable se destruirá.
OnDisableEsta función se llama cuando el objeto scriptable se va fuera del alcance (scope).
OnEnableEsta función se llama cuando el objeto es cargado.