π₯οΈ BaseWidget
BaseWidget is the base for all WGUI widget classes.
π¦ Functions
SetMouseEnabled
Sets whether or not the mouse should be enabled for this widget.
IsEnabled
GetMouseEnabled
Returns whether or not the mouse should be enabled for this widget.
β Returns boolean.
SetKeyboardEnabled
Sets whether or not the keyboard should be enabled for this widget.
IsEnabled
GetKeyboardEnabled
Returns whether or not the keyboard should be enabled for this widget.
β Returns boolean.
SetForceInputRules
Sets whether or not the widget should force the input rules to be recalculated no matter if it is visible or not.
Force
GetForceInputRules
β Returns boolean.
SetTranslation
Sets the render translation of the widget.
NewTranslation
GetTranslation
Gets the render translation of the widget.
β Returns Vector2D.
SetScale
Sets the scale of the widget.
NewScale
GetScale
Gets the scale of the widget.
β Returns Vector2D.
GetDesiredSize
Returns the desired size of the widget.
β Returns Vector2D.
SetShear
Sets the shear of the widget.
NewShear
GetShear
Gets the shear of the widget.
β Returns Vector2D.
SetAngle
Sets the angle of the widget.
NewAngle
GetAngle
Gets the angle of the widget.
β Returns number.
SetPivot
Sets the pivot of the widget.
NewPivot
GetPivot
Gets the pivot of the widget.
β Returns Vector2D.
SetOpacity
Sets the opacity of the widget.
NewOpacity
GetOpacity
Gets the opacity of the widget.
β Returns number.
SetColor
Sets the tint of the widget, this affects all children.
Color
GetColor
Gets the tint of the widget.
β Returns Color.
SetForegroundColor
Sets the foreground color of the widget.
Color
ColorRule
CreateAnimationObject
β Returns AnimationObject.
GetterFunction
SetterFunction
EndValue
Duration
OnCompleted?
AutoDestroy?
false
EasingFunction?
RemoveFromParent
Removes the widget from its parent panel.
GetParent
Returns the parent panel of the widget.
β Returns PanelWidget or nil.
IsChildOfParent
Returns whether the widget is a child of the specified parent class.
β Returns boolean.
ParentClass
SetVisibility
Sets the visibility of the widget.
NewVisibility
GetVisibility
Gets the visibility of the widget.
β Returns WGUIVisibility.
IsVisible
Returns true if the widget is currently visible.
β Returns boolean.
IsHitTestable
Returns true if the widget can be interacted with.
β Returns boolean.
IsHovered
Returns true if the widget is currently being hovered.
β Returns boolean.
IsRendered
Returns true if the widget is currently rendered.
β Returns boolean.
SetIsEnabled
Sets the current enabled status of the widget.
IsEnabled
GetIsEnabled
Gets the current enabled status of the widget.
β Returns boolean.
SetPadding
Sets the padding of the widget, putting a larger gap between the widget border and it's root widget.
Padding
GetPadding
Gets the padding of the widget.
β Returns Margin.
SetToolTipText
Sets the tooltip text of the widget.
Text
GetToolTipText
Gets the tooltip text of the widget.
β Returns string.
SetToolTipWidget
Sets the tooltip widget of the widget.
Widget
GetToolTipWidget
Gets the tooltip widget of the widget.
β Returns Widget
SetCursor
Sets the cursor to show over the widget.
Cursor
GetCursor
Gets the cursor to show over the widget.
β Returns CursorType.
SetClipping
Sets the clipping state of the widget.
Clipping
GetClipping
Gets the clipping state of the widget.
β Returns WidgetClipping.
SetSnapToPixel
Sets whether or not the widget will draw snapped to the nearest pixel.
PixelSnapping
GetSnapToPixel
Gets whether or not the widget will draw snapped to the nearest pixel.
β Returns PixelSnapping.
SetDragKey
Sets the input key that will be used to drag the widget.
Key
GetDragKey
Gets the input key that will be used to drag the widget.
β Returns string.
CreateDragDropOperation
Creates a new drag & drop operation. Should be called inside a OnDragDetected event.
DragVisual
Payload
MetaData
Pivot
Offset
CancelDragDropOperation
Cancels any ongoing drag & drop operation.
GetIsDragDropping
Returns true if the widget is currently being dragged.
β Returns boolean.
InvalidateLayoutAndVolatility
Invalidates the widget from the view of a layout caching widget that may own this widget. It will force the owning widget to redraw and cache children on the next paint pass.
ForceVolatile
Sets the forced volatility of the widget.
bForce
ForceLayoutPrepass
Forces a pre-pass. A pre-pass caches the desired size of the widget hierarchy owned by this widget.
BindDispatcher
β Returns function (the subscribed callback itself).
EventName
Callback
UnbindDispatcher
EventName
Callback?
π Events
Mouse Button Down
PointerEvent
Mouse Button Up
PointerEvent
Mouse Move
PointerEvent
Mouse Enter
PointerEvent
Mouse Leave
PointerEvent
Mouse Wheel
PointerEvent
Mouse Double Click
PointerEvent
Focus Received
Focus Lost
Drag Detected
PointerEvent
Drag Cancelled
PayloadID
Tag
Drop
PayloadID
Tag
Last updated
Was this helpful?