Makes a sprite or tiled background behave as a radial progress bar
Author: skymen
Construct Addon Page
Documentation
Made using CAW
To build the addon, run the following commands:
npm i
npm run build
To run the dev server, run
npm i
npm run dev
Description | Download |
---|---|
Full Control | |
Simple Progress Bar |
Property Name | Description | Type |
---|---|---|
Resolution | The number of segments to use to draw the radial progress | integer |
Circular | If set, the progress will be drawn as a circle | check |
Inner Radius X | The X radius of the inner circle | float |
Inner Radius Y | The Y radius of the inner circle | float |
Outer Radius X | The X radius of the outer circle | float |
Outer Radius Y | The Y radius of the outer circle | float |
Value | The current progress value | float |
Maximum | The maximum progress value | float |
Inverted | If set, the progress will be inverted | check |
Action | Description | Params |
---|---|---|
Set circular | Set the circular | Circular (boolean) |
Set inner radius x | Set the inner radius x | InnerRadiusX (number) |
Set inner radius y | Set the inner radius y | InnerRadiusY (number) |
Set inverted | Set the inverted | Inverted (boolean) |
Set maximum | Set the maximum | Maximum (number) |
Set outer radius x | Set the outer radius x | OuterRadiusX (number) |
Set outer radius y | Set the outer radius y | OuterRadiusY (number) |
Set resolution | Set the resolution | Resolution (number) |
Set value | Set the value | Value (number) |
Condition | Description | Params |
---|
Expression | Description | Return Type | Params |
---|---|---|---|
InnerRadiusX | Get the inner radius x | number | |
InnerRadiusY | Get the inner radius y | number | |
IsCircular | Get the circular | number | |
IsInverted | Get the inverted | number | |
Maximum | Get the maximum | number | |
OuterRadiusX | Get the outer radius x | number | |
OuterRadiusY | Get the outer radius y | number | |
Resolution | Get the resolution | number | |
Value | Get the value | number |