Drawing
All stuff needed for drawing.
Enums
Align
LEFT
CENTER
RIGHT
Effect
SHADOW
OUTLINE
NONE
Font
NORMAL
BOLD
EMOJI
Functions
DrawBoxedText
Draws the AW stylized "boxed text" (box around text). This is if you want your drawing to look in-line with the UI style.
Parameters
Text (String)
Position (Vec2 Object)
Color (Color Object)
FontSize (Float)
Alignment (Align Enum)
Font (Font Enum)
BoxPadding (Vec2)
BoxAlpha (Float)
BoxRounding (Float)
Example
DrawText
Draws text on the screen.
Parameters
Text (String)
Position (Vec2 Object)
Color (Color Object)
Alignment (Align Enum)
FontEffect (Effect Enum)
FontSize (Float)
Font (Font Enum)
Example
DrawLine
Draws a line on the screen.
Parameters
PosA (Vec2 Object)
PosB (Vec2 Object)
Color (Color Object)
Thickness (Float)
Example
DrawCircle
Draws a circle on the screen.
Parameters
PosA (FVector2D)
Color (Color)
Segments (Integer)
Radius (Float)
Thickness (Float)
Example
DrawCircleFilled
Draws a filled circle on the screen.
Parameters
PosA (FVector2D)
Color (Color)
Segments (Integer)
Radius (Float)
Example
DrawRectangle
Draws a rectangle on the screen.
Parameters
PosA (Vec2)
PosB (Vec2)
Color (Color)
Thickness (Float)
Rounding (Float)
Example
DrawRectangleFilled
Draws a filled rectangle on the screen.
Parameters
PosA (FVector2D)
PosB (FVector2D)
Color (Color)
Rounding (Float)
Example
DrawTriangle
Draws a triangle on the screen.
Parameters
PosA (FVector2D)
PosB (FVector2D)
PosC (FVector2D)
Color (Color)
Thickness (Float)
Example
DrawTriangleFilled
Draws a triangle filled on the screen.
Parameters
PosA (FVector2D)
PosB (FVector2D)
PosC (FVector2D)
Color (Color)
Example
DrawRectangleGradient
Draws a multi-coloured filled rectangle.
Parameters
PosA (FVector2D)
PosB (FVector2D)
TopLeftColor (FColor)
TopRightColor (FColor)
BottomRightColor (FColor)
BottomLeftColor (FColor)
Example
Last updated