Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 20 additions & 1 deletion include/generated/PluginSecurity.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10540,7 +10540,26 @@ interface PluginToolbarButton extends Instance {
*
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PluginToolbarButton#Click)
*/
readonly Click: RBXScriptSignal<() => void>;
readonly Click: RBXScriptSignal<() => void>;
/**
* Determines whether the button can be clicked when the game viewport is hidden, such as while editing a script in a different Studio tab.
*
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PluginToolbarButton#ClickableWhenViewportHidden)
*/
ClickableWhenViewportHidden: boolean
/**
* Determines what [icon](https://create.roblox.com/docs/reference/engine/datatypes/Content) should be shown for the button in the plugin toolbar.
* Defaults to the button's text.
*
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PluginToolbarButton#Icon)
*/
Icon: ContentId
/**
* Determines whether a button is clickable in general
*
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PluginToolbarButton#Enabled)
*/
Enabled: boolean
}
/**
* Helps you query information regarding policy compliance for players around the world based on age range, location, and platform type.
Expand Down
Loading