This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| local Etch = script:FindFirstAncestor('Etch') | |
| local Packages = Etch.Packages | |
| local Vide = require(Packages.Vide) | |
| local function Modifiers( | |
| List: { [Vide.Source<boolean>]: Enum.StudioStyleGuideModifier }, | |
| Default: Enum.StudioStyleGuideModifier? | |
| ): () -> Enum.StudioStyleGuideModifier | |
| return function() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| local Plugin = script:FindFirstAncestorOfClass('Plugin') | |
| local Etch = script:FindFirstAncestor('Etch') | |
| local Packages = Etch.Packages | |
| local Vide = require(Packages.Vide) | |
| local Types = require(Etch.Types) | |
| local Studio = settings().Studio |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -- Language Service Provider | |
| local Language = require('lsp-zero') | |
| Language.preset('recommended') | |
| Language.ensure_installed({ | |
| 'luau_lsp' | |
| }) | |
| local Completion = require('cmp') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --[[ | |
| Category.lua | |
| Nicklaus_s | |
| 9 July 2022 | |
| Interface class for Category button. | |
| --]] | |
| local ReplicatedStorage = game:GetService('ReplicatedStorage') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --[[ | |
| Catalog.lua | |
| Nicklaus_s | |
| 5 July 2022 | |
| Interface class for Catalog. | |
| --]] | |
| local ReplicatedStorage = game:GetService('ReplicatedStorage') | |
| local StarterGui = game:GetService('StarterGui') |