Widget
A plugin widget with a Background component.

Properties
Name | Type | Description |
---|---|---|
Id | string | The Identifier of the widget. |
Title | (string | Fusion.Value<string> | Fusion.Computed<string>)? |
InitDockState | Enum.InitialDockState? | The initial dock state for the widget. |
InitEnabled | boolean? | The enabled state of the Widget if it does not have a saved state from a previous session. |
OverrideEnabledRestore | boolean? | If true, will override any saved enabled state with the InitEnabled value. |
FloatXSize | number? | The initial pixel width of the PluginGui when floating. |
FloatYSize | number? | The initial pixel height of the PluginGui when floating. |
MinWidth | number? | The minimum pixel width of the PluginGui. (Defaults to FloatXSize ). |
MinHeight | number? | The minimum pixel height of the PluginGui. (Defaults to FloatYSize ). |
DebugMode | boolean? | If true then an unhydrated copy of the widgets children is parented to StarterGui . |
Example
Scope:Widget {
Id = "IgnitePlugin ",
Title = "Ignite Plugin",
InitDockState = Enum.InitialDockState.Float,
FloatXSize = 300, FloatYSize = 150,
}