WoopWoop-Docs
Loading...
Searching...
No Matches
Public Member Functions | Public Attributes | List of all members
WoopWoop.UI.Button Class Reference

Represents a button UI element. More...

Inheritance diagram for WoopWoop.UI.Button:
WoopWoop.UI.UIBoundsComponent WoopWoop.Renderer WoopWoop.Component

Public Member Functions

override void Update (float deltaTime)
 Updates the state of the button.
 
- Public Member Functions inherited from WoopWoop.UI.UIBoundsComponent
override void Update (float deltaTime)
 Updates the UI component.
 
- Public Member Functions inherited from WoopWoop.Component
void Attach (Entity entity)
 Attaches the component to an entity.
 
virtual void Awake ()
 Awake is called when the component is initialized, regardless of whether or not the script is enabled.
 
virtual void Start ()
 Called when the component is started if it's enabled.
 
virtual void OnEndOfFrame ()
 Called on the end of every frame.
 
virtual void Stop ()
 Called when the component is removed.
 
virtual void OnDrawGizmo ()
 Tells the renderer how to draw the object's editor gizmos.
 

Public Attributes

string text = "Button"
 The text displayed on the button.
 
bool state = false
 Indicates whether the button is currently pressed.
 
bool prevState = false
 Indicates the previous state of the button.
 
bool isToggle = true
 Indicates whether the button behaves as a toggle button.
 
Action OnPressed
 Action invoked when the button is pressed.
 
- Public Attributes inherited from WoopWoop.UI.UIBoundsComponent
Rectangle bounds
 The bounds of the UI component.
 
- Public Attributes inherited from WoopWoop.Renderer
Color Color = Raylib.BLACK
 The color of the renderer.
 

Additional Inherited Members

- Static Protected Member Functions inherited from WoopWoop.Renderer
static Vector2 GetOriginalPositionOfTransform (Transform transform, Pivot pivot)
 Gets the original position of the transform based on the pivot.
 
- Properties inherited from WoopWoop.Renderer
byte Layer [get, set]
 The rendering layer of the renderer.
 
- Properties inherited from WoopWoop.Component
Entity entity [get, private set]
 The entity to which this component is attached.
 
Transform transform [get]
 The transform of the entity to which this component is attached.
 
bool Enabled = true [get, set]
 Determines whether the component is enabled.
 

Detailed Description

Represents a button UI element.

Member Function Documentation

◆ Update()

override void WoopWoop.UI.Button.Update ( float deltaTime)
virtual

Updates the state of the button.

Parameters
deltaTimeThe time elapsed since the last update.

Reimplemented from WoopWoop.Component.

Member Data Documentation

◆ isToggle

bool WoopWoop.UI.Button.isToggle = true

Indicates whether the button behaves as a toggle button.

◆ OnPressed

Action WoopWoop.UI.Button.OnPressed

Action invoked when the button is pressed.

◆ prevState

bool WoopWoop.UI.Button.prevState = false

Indicates the previous state of the button.

◆ state

bool WoopWoop.UI.Button.state = false

Indicates whether the button is currently pressed.

◆ text

string WoopWoop.UI.Button.text = "Button"

The text displayed on the button.


The documentation for this class was generated from the following file: