repo
stringclasses
302 values
file_path
stringlengths
18
241
language
stringclasses
2 values
file_type
stringclasses
4 values
code
stringlengths
76
697k
tokens
int64
10
271k
ActualMasterOogway/Fluent-Renewed
ActualMasterOogway-Fluent-Renewed-b224870/Src/Elements/Colorpicker.luau
luau
.luau
local Players = game:GetService("Players") local LocalPlayer = Players.LocalPlayer local Mouse = LocalPlayer:GetMouse() local Root = script.Parent.Parent local Creator = require(Root.Modules.Creator) local New = Creator.New local Components = Root.Components local Element = {} Element.__index = Element Element.__ty...
4,927
ActualMasterOogway/Fluent-Renewed
ActualMasterOogway-Fluent-Renewed-b224870/Src/Elements/Dropdown.luau
luau
.luau
local UserInputService = game:GetService("UserInputService") local Mouse = game:GetService("Players").LocalPlayer:GetMouse() local Camera = game:GetService("Workspace").CurrentCamera local Root = script.Parent.Parent local Creator = require(Root.Modules.Creator) local Flipper = require(Root.Packages.Flipper) local Ne...
4,506
ActualMasterOogway/Fluent-Renewed
ActualMasterOogway-Fluent-Renewed-b224870/Src/Elements/Input.luau
luau
.luau
local Root = script.Parent.Parent local Creator = require(Root.Modules.Creator) local AddSignal = Creator.AddSignal local Components = Root.Components local Element = {} Element.__index = Element Element.__type = "Input" function Element:New(Idx, Config) local Library = self.Library assert(Config.Title, "Input - M...
654
ActualMasterOogway/Fluent-Renewed
ActualMasterOogway-Fluent-Renewed-b224870/Src/Elements/Keybind.luau
luau
.luau
local UserInputService = game:GetService("UserInputService") local Root = script.Parent.Parent local Creator = require(Root.Modules.Creator) local New = Creator.New local Components = Root.Components local Element = {} Element.__index = Element Element.__type = "Keybind" function Element:New(Idx, Config) local Lib...
1,720
ActualMasterOogway/Fluent-Renewed
ActualMasterOogway-Fluent-Renewed-b224870/Src/Elements/Paragraph.luau
luau
.luau
local Root = script.Parent.Parent local Components = Root.Components local Element = {} Element.__index = Element Element.__type = "Paragraph" function Element:New(Idx, Config) local Library = self.Library assert(Config.Title, "Paragraph - Missing Title") Config.Content = Config.Content or "" local Paragraph = {...
460
ActualMasterOogway/Fluent-Renewed
ActualMasterOogway-Fluent-Renewed-b224870/Src/Elements/Slider.luau
luau
.luau
local UserInputService = game:GetService("UserInputService") local Root = script.Parent.Parent local Creator = require(Root.Modules.Creator) local New = Creator.New local Components = Root.Components local Element = {} Element.__index = Element Element.__type = "Slider" function Element:New(Idx, Config) local Libra...
1,454
ActualMasterOogway/Fluent-Renewed
ActualMasterOogway-Fluent-Renewed-b224870/Src/Elements/Toggle.luau
luau
.luau
local TweenService, UserInputService = game:GetService("TweenService"), game:GetService("UserInputService") local Root = script.Parent.Parent local Creator = require(Root.Modules.Creator) local New = Creator.New local Components = Root.Components local Element = {} Element.__index = Element Element.__type = "Toggle"...
2,659
ActualMasterOogway/Fluent-Renewed
ActualMasterOogway-Fluent-Renewed-b224870/Src/Elements/init.luau
luau
.luau
local Elements = {} for _, Element in next, script:GetChildren() do Elements[#Elements + 1] = require(Element) end return Elements
33
ActualMasterOogway/Fluent-Renewed
ActualMasterOogway-Fluent-Renewed-b224870/Src/Modules/Acrylic/AcrylicBlur.luau
luau
.luau
local Root = script.Parent.Parent.Parent local Creator = require(Root.Modules.Creator) local createAcrylic = require(script.Parent.CreateAcrylic) local viewportPointToWorld, getOffset = unpack(require(script.Parent.Utils)) local BlurFolder = Instance.new("Folder", game:GetService("Workspace").CurrentCamera) local fun...
775
ActualMasterOogway/Fluent-Renewed
ActualMasterOogway-Fluent-Renewed-b224870/Src/Modules/Acrylic/AcrylicPaint.luau
luau
.luau
local Root = script.Parent.Parent.Parent local Creator = require(Root.Modules.Creator) local AcrylicBlur = require(script.Parent.AcrylicBlur) local New = Creator.New return function(props) local AcrylicPaint = {} AcrylicPaint.Frame = New("Frame", { Size = UDim2.fromScale(1, 1), BackgroundTransparency = 0.9, ...
964
ActualMasterOogway/Fluent-Renewed
ActualMasterOogway-Fluent-Renewed-b224870/Src/Modules/Acrylic/CreateAcrylic.luau
luau
.luau
local Root = script.Parent.Parent.Parent local Creator = require(Root.Modules.Creator) local function createAcrylic() local Part = Creator.New("Part", { Name = "Body", Color = Color3.new(0, 0, 0), Material = Enum.Material.Glass, Size = Vector3.new(1, 1, 0), Anchored = true, CanCollide = false, Locked = ...
173
ActualMasterOogway/Fluent-Renewed
ActualMasterOogway-Fluent-Renewed-b224870/Src/Modules/Acrylic/Utils.luau
luau
.luau
local function map(value, inMin, inMax, outMin, outMax) return (value - inMin) * (outMax - outMin) / (inMax - inMin) + outMin end local function viewportPointToWorld(location, distance) local unitRay = game:GetService("Workspace").CurrentCamera:ScreenPointToRay(location.X, location.Y) return unitRay.Origin + unitRa...
146
ActualMasterOogway/Fluent-Renewed
ActualMasterOogway-Fluent-Renewed-b224870/Src/Modules/Acrylic/init.luau
luau
.luau
local Acrylic = { AcrylicBlur = require(script.AcrylicBlur), CreateAcrylic = require(script.CreateAcrylic), AcrylicPaint = require(script.AcrylicPaint), } function Acrylic.init() local baseEffect = Instance.new("DepthOfFieldEffect") baseEffect.FarIntensity = 0 baseEffect.InFocusRadius = 0.1 baseEffect.NearInten...
300
ActualMasterOogway/Fluent-Renewed
ActualMasterOogway-Fluent-Renewed-b224870/Src/Modules/Creator.luau
luau
.luau
local Root = script.Parent.Parent local Themes = require(Root.Themes) local Flipper, Ripple = require(Root.Packages.Flipper), require(Root.Packages.Ripple) local Signal = require(Root.Packages.Signal) local Creator = { Registry = {}, Signals = {}, TransparencyMotors = {}, DefaultProperties = { ScreenGui = { R...
1,596
ActualMasterOogway/Fluent-Renewed
ActualMasterOogway-Fluent-Renewed-b224870/Src/Themes/Abyss.luau
luau
.luau
return { Accent = Color3.fromRGB(102, 136, 204), -- #6688cc AcrylicMain = Color3.fromRGB(0, 12, 24), -- #000c18 AcrylicBorder = Color3.fromRGB(43, 43, 74), -- #2b2b4a AcrylicGradient = ColorSequence.new(Color3.fromRGB(0, 12, 24), Color3.fromRGB(0, 12, 24)), AcrylicNoise = 1, TitleBarLine = Col...
785
ActualMasterOogway/Fluent-Renewed
ActualMasterOogway-Fluent-Renewed-b224870/Src/Themes/Adapta Nokto.luau
luau
.luau
return { Accent = Color3.fromHex("#ec6a3f"), AcrylicMain = Color3.fromHex("#31312e"), AcrylicBorder = Color3.fromHex("#403f3a"), AcrylicGradient = ColorSequence.new(Color3.fromHex("#31312e"), Color3.fromHex("#31312e")), AcrylicNoise = 1, TitleBarLine = Color3.fromHex("#403f3a"), Tab = Colo...
454
ActualMasterOogway/Fluent-Renewed
ActualMasterOogway-Fluent-Renewed-b224870/Src/Themes/Ambiance.luau
luau
.luau
return { Accent = Color3.fromHex("#00BCD4"), AcrylicMain = Color3.fromHex("#29353b"), AcrylicBorder = Color3.fromHex("#222D32"), AcrylicGradient = ColorSequence.new(Color3.fromHex("#29353b"), Color3.fromHex("#29353b")), AcrylicNoise = 1, TitleBarLine = Color3.fromHex("#222D32"), Tab = Colo...
443
ActualMasterOogway/Fluent-Renewed
ActualMasterOogway-Fluent-Renewed-b224870/Src/Themes/Amethyst Dark.luau
luau
.luau
return { Accent = Color3.fromHex("#b133ff"), AcrylicMain = Color3.fromHex("#120024"), AcrylicBorder = Color3.fromHex("#4d057b"), AcrylicGradient = ColorSequence.new(Color3.fromHex("#120024"), Color3.fromHex("#120024")), AcrylicNoise = 0.92, TitleBarLine = Color3.fromHex("#4d057b"), Tab = C...
462
ActualMasterOogway/Fluent-Renewed
ActualMasterOogway-Fluent-Renewed-b224870/Src/Themes/Amethyst.luau
luau
.luau
return { Accent = Color3.fromRGB(97, 62, 167), AcrylicMain = Color3.fromRGB(20, 20, 20), AcrylicBorder = Color3.fromRGB(110, 90, 130), AcrylicGradient = ColorSequence.new(Color3.fromRGB(85, 57, 139), Color3.fromRGB(40, 25, 65)), AcrylicNoise = 0.92, TitleBarLine = Color3.fromRGB(95, 75, 110), Tab = Color3.from...
567
ActualMasterOogway/Fluent-Renewed
ActualMasterOogway-Fluent-Renewed-b224870/Src/Themes/Aqua.luau
luau
.luau
return { Accent = Color3.fromRGB(60, 165, 165), AcrylicMain = Color3.fromRGB(20, 20, 20), AcrylicBorder = Color3.fromRGB(50, 100, 100), AcrylicGradient = ColorSequence.new(Color3.fromRGB(60, 140, 140), Color3.fromRGB(40, 80, 80)), AcrylicNoise = 0.92, TitleBarLine = Color3.fromRGB(60, 120, 120), Tab = Color3.f...
567
ActualMasterOogway/Fluent-Renewed
ActualMasterOogway-Fluent-Renewed-b224870/Src/Themes/Arc Dark.luau
luau
.luau
return { Accent = Color3.fromHex("#5294e2"), AcrylicMain = Color3.fromHex("#383c4a"), AcrylicBorder = Color3.fromHex("#404f7d"), AcrylicGradient = ColorSequence.new(Color3.fromHex("#383c4a"), Color3.fromHex("#383c4a")), AcrylicNoise = 1, TitleBarLine = Color3.fromHex("#404f7d"), Tab = Colo...
481
ActualMasterOogway/Fluent-Renewed
ActualMasterOogway-Fluent-Renewed-b224870/Src/Themes/Dark Typewriter.luau
luau
.luau
return { Accent = Color3.fromRGB(109, 180, 120), AcrylicMain = Color3.fromRGB(38, 38, 38), AcrylicBorder = Color3.fromRGB(85, 85, 85), AcrylicGradient = ColorSequence.new(Color3.fromRGB(38, 38, 38), Color3.fromRGB(38, 38, 38)), AcrylicNoise = 1, TitleBarLine = Color3.fromRGB(189, 189, 189), ...
573
ActualMasterOogway/Fluent-Renewed
ActualMasterOogway-Fluent-Renewed-b224870/Src/Themes/Dark.luau
luau
.luau
return { Accent = Color3.fromRGB(96, 205, 255), AcrylicMain = Color3.fromRGB(60, 60, 60), AcrylicBorder = Color3.fromRGB(90, 90, 90), AcrylicGradient = ColorSequence.new(Color3.fromRGB(40, 40, 40), Color3.fromRGB(40, 40, 40)), AcrylicNoise = 0.9, TitleBarLine = Color3.fromRGB(75, 75, 75), Tab = Color3.fromRGB(...
567
ActualMasterOogway/Fluent-Renewed
ActualMasterOogway-Fluent-Renewed-b224870/Src/Themes/Darker.luau
luau
.luau
return { Accent = Color3.fromRGB(72, 138, 182), AcrylicMain = Color3.fromRGB(30, 30, 30), AcrylicBorder = Color3.fromRGB(60, 60, 60), AcrylicGradient = ColorSequence.new(Color3.fromRGB(25, 25, 25), Color3.fromRGB(15, 15, 15)), AcrylicNoise = 0.94, TitleBarLine = Color3.fromRGB(65, 65, 65), Tab = Color3.fromRGB...
378
ActualMasterOogway/Fluent-Renewed
ActualMasterOogway-Fluent-Renewed-b224870/Src/Themes/DuoTone Dark Earth.luau
luau
.luau
return { Accent = Color3.fromHex("#fecb52"), AcrylicMain = Color3.fromHex("#2c2826"), AcrylicBorder = Color3.fromHex("#48413d"), AcrylicGradient = ColorSequence.new(Color3.fromHex("#2c2826"), Color3.fromHex("#2c2826")), AcrylicNoise = 1, TitleBarLine = Color3.fromHex("#48413d"), Tab = Colo...
451
ActualMasterOogway/Fluent-Renewed
ActualMasterOogway-Fluent-Renewed-b224870/Src/Themes/DuoTone Dark Forest.luau
luau
.luau
return { Accent = Color3.fromHex("#e7f98b"), AcrylicMain = Color3.fromHex("#2a2d2a"), AcrylicBorder = Color3.fromHex("#424842"), AcrylicGradient = ColorSequence.new(Color3.fromHex("#2a2d2a"), Color3.fromHex("#2a2d2a")), AcrylicNoise = 1, TitleBarLine = Color3.fromHex("#424842"), Tab = Colo...
460
ActualMasterOogway/Fluent-Renewed
ActualMasterOogway-Fluent-Renewed-b224870/Src/Themes/DuoTone Dark Sea.luau
luau
.luau
return { Accent = Color3.fromHex("#34FEBB"), AcrylicMain = Color3.fromHex("#1D262F"), AcrylicBorder = Color3.fromHex("#303F4F"), AcrylicGradient = ColorSequence.new(Color3.fromHex("#1D262F"), Color3.fromHex("#1D262F")), AcrylicNoise = 1, TitleBarLine = Color3.fromHex("#303F4F"), Tab = Colo...
467
ActualMasterOogway/Fluent-Renewed
ActualMasterOogway-Fluent-Renewed-b224870/Src/Themes/DuoTone Dark Sky.luau
luau
.luau
return { Accent = Color3.fromHex("#fec38f"), AcrylicMain = Color3.fromHex("#2c2734"), AcrylicBorder = Color3.fromHex("#443d51"), AcrylicGradient = ColorSequence.new(Color3.fromHex("#2c2734"), Color3.fromHex("#2c2734")), AcrylicNoise = 1, TitleBarLine = Color3.fromHex("#443d51"), Tab = Colo...
458
ActualMasterOogway/Fluent-Renewed
ActualMasterOogway-Fluent-Renewed-b224870/Src/Themes/DuoTone Dark Space.luau
luau
.luau
return { Accent = Color3.fromHex("#fe7734"), AcrylicMain = Color3.fromHex("#24242e"), AcrylicBorder = Color3.fromHex("#3a3a4a"), AcrylicGradient = ColorSequence.new(Color3.fromHex("#24242e"), Color3.fromHex("#24242e")), AcrylicNoise = 1, TitleBarLine = Color3.fromHex("#3a3a4a"), Tab = Colo...
487
ActualMasterOogway/Fluent-Renewed
ActualMasterOogway-Fluent-Renewed-b224870/Src/Themes/Elementary.luau
luau
.luau
return { Accent = Color3.fromHex("#cb5226"), AcrylicMain = Color3.fromHex("#eff0f1"), AcrylicBorder = Color3.fromHex("#e9d18d"), AcrylicGradient = ColorSequence.new(Color3.fromHex("#eff0f1"), Color3.fromHex("#eff0f1")), AcrylicNoise = 1, TitleBarLine = Color3.fromHex("#e9d18d"), Tab = Colo...
484
ActualMasterOogway/Fluent-Renewed
ActualMasterOogway-Fluent-Renewed-b224870/Src/Themes/GitHub Dark Colorblind.luau
luau
.luau
return { Accent = Color3.fromHex("#1f6feb"), -- focusBorder AcrylicMain = Color3.fromHex("#010409"), -- sideBar.background AcrylicBorder = Color3.fromHex("#30363d"), -- titleBar.border AcrylicGradient = ColorSequence.new(Color3.fromHex("#010409"), Color3.fromHex("#010409")), -- sideBar.background A...
631
ActualMasterOogway/Fluent-Renewed
ActualMasterOogway-Fluent-Renewed-b224870/Src/Themes/GitHub Dark Default.luau
luau
.luau
return { Accent = Color3.fromHex("#1f6feb"), -- focusBorder AcrylicMain = Color3.fromHex("#010409"), -- sideBar.background AcrylicBorder = Color3.fromHex("#30363d"), -- titleBar.border AcrylicGradient = ColorSequence.new(Color3.fromHex("#010409"), Color3.fromHex("#010409")), -- sideBar.background ...
628
ActualMasterOogway/Fluent-Renewed
ActualMasterOogway-Fluent-Renewed-b224870/Src/Themes/GitHub Dark Dimmed.luau
luau
.luau
return { Accent = Color3.fromHex("#316dca"), -- focusBorder AcrylicMain = Color3.fromHex("#1c2128"), -- sideBar.background AcrylicBorder = Color3.fromHex("#444c56"), -- titleBar.border AcrylicGradient = ColorSequence.new(Color3.fromHex("#1c2128"), Color3.fromHex("#1c2128")), -- sideBar.background A...
620
ActualMasterOogway/Fluent-Renewed
ActualMasterOogway-Fluent-Renewed-b224870/Src/Themes/GitHub Dark High Contrast.luau
luau
.luau
return { Accent = Color3.fromHex("#409eff"), -- focusBorder AcrylicMain = Color3.fromHex("#010409"), -- sideBar.background AcrylicBorder = Color3.fromHex("#7a828e"), -- titleBar.border AcrylicGradient = ColorSequence.new(Color3.fromHex("#010409"), Color3.fromHex("#010409")), -- sideBar.background ...
641
ActualMasterOogway/Fluent-Renewed
ActualMasterOogway-Fluent-Renewed-b224870/Src/Themes/GitHub Dark.luau
luau
.luau
return { Accent = Color3.fromHex("#005cc5"), -- focusBorder AcrylicMain = Color3.fromHex("#1f2428"), -- sideBar.background AcrylicBorder = Color3.fromHex("#1b1f23"), -- titleBar.border AcrylicGradient = ColorSequence.new(Color3.fromHex("#1f2428"), Color3.fromHex("#1f2428")),-- sideBar.background A...
628
ActualMasterOogway/Fluent-Renewed
ActualMasterOogway-Fluent-Renewed-b224870/Src/Themes/GitHub Light Colorblind.luau
luau
.luau
return { Accent = Color3.fromHex("#0969da"), -- focusBorder AcrylicMain = Color3.fromHex("#f6f8fa"), -- textBlockQuote.background AcrylicBorder = Color3.fromHex("#d0d7de"), -- textBlockQuote.border AcrylicGradient = ColorSequence.new(Color3.fromHex("#f6f8fa"), Color3.fromHex("#f6f8fa")), -- textBlockQu...
585
ActualMasterOogway/Fluent-Renewed
ActualMasterOogway-Fluent-Renewed-b224870/Src/Themes/GitHub Light Default.luau
luau
.luau
return { Accent = Color3.fromHex("#0969da"), -- focusBorder AcrylicMain = Color3.fromHex("#f6f8fa"), -- sideBar.background AcrylicBorder = Color3.fromHex("#d0d7de"), -- titleBar.border AcrylicGradient = ColorSequence.new(Color3.fromHex("#f6f8fa"), Color3.fromHex("#f6f8fa")), -- sideBar.background A...
595
ActualMasterOogway/Fluent-Renewed
ActualMasterOogway-Fluent-Renewed-b224870/Src/Themes/GitHub Light High Contrast.luau
luau
.luau
return { Accent = Color3.fromHex("#0349b4"), -- focusBorder AcrylicMain = Color3.fromHex("#ffffff"), -- sideBar.background AcrylicBorder = Color3.fromHex("#20252c"), -- titleBar.border AcrylicGradient = ColorSequence.new(Color3.fromHex("#ffffff"), Color3.fromHex("#ffffff")), -- sideBar.background A...
588
ActualMasterOogway/Fluent-Renewed
ActualMasterOogway-Fluent-Renewed-b224870/Src/Themes/GitHub Light.luau
luau
.luau
return { Accent = Color3.fromHex("2188ff"), -- focusBorder AcrylicMain = Color3.fromHex("f6f8fa"), -- sideBar.background AcrylicBorder = Color3.fromHex("e1e4e8"), -- titleBar.border AcrylicGradient = ColorSequence.new(Color3.fromHex("f6f8fa"), Color3.fromHex("f6f8fa")), -- sideBar.background Acryli...
636
ActualMasterOogway/Fluent-Renewed
ActualMasterOogway-Fluent-Renewed-b224870/Src/Themes/Light.luau
luau
.luau
return { Accent = Color3.fromRGB(0, 103, 192), AcrylicMain = Color3.fromRGB(200, 200, 200), AcrylicBorder = Color3.fromRGB(120, 120, 120), AcrylicGradient = ColorSequence.new(Color3.fromRGB(255, 255, 255), Color3.fromRGB(255, 255, 255)), AcrylicNoise = 0.96, TitleBarLine = Color3.fromRGB(160, 160, 160), Tab = ...
567
ActualMasterOogway/Fluent-Renewed
ActualMasterOogway-Fluent-Renewed-b224870/Src/Themes/Monokai Classic.luau
luau
.luau
return { Accent = Color3.fromHex("#75715E"), -- focusBorder AcrylicMain = Color3.fromHex("#272822"), -- editor.background AcrylicBorder = Color3.fromHex("#1e1f1c"), -- titleBar.activeBackground AcrylicGradient = ColorSequence.new(Color3.fromHex("#272822"), Color3.fromHex("#272822")), AcrylicNoise =...
593
ActualMasterOogway/Fluent-Renewed
ActualMasterOogway-Fluent-Renewed-b224870/Src/Themes/Monokai Dimmed.luau
luau
.luau
return { Accent = Color3.fromHex("#3655b5"), -- focusBorder AcrylicMain = Color3.fromHex("#1e1e1e"), -- editor.background AcrylicBorder = Color3.fromHex("#303030"), -- tab.border AcrylicGradient = ColorSequence.new(Color3.fromHex("#1e1e1e"), Color3.fromHex("#1e1e1e")), AcrylicNoise = 1, TitleB...
590
ActualMasterOogway/Fluent-Renewed
ActualMasterOogway-Fluent-Renewed-b224870/Src/Themes/Monokai Vibrant.luau
luau
.luau
return { Accent = Color3.fromHex("#528bff"), -- activityBarBadge.background AcrylicMain = Color3.fromHex("#16171D"), -- editor.background AcrylicBorder = Color3.fromHex("#181A1F"), -- editorGroup.border AcrylicGradient = ColorSequence.new(Color3.fromHex("#16171D"), Color3.fromHex("#16171D")), Acryl...
611
ActualMasterOogway/Fluent-Renewed
ActualMasterOogway-Fluent-Renewed-b224870/Src/Themes/Monokai.luau
luau
.luau
return { Accent = Color3.fromHex("#F92672"), -- Using the keyword color as accent AcrylicMain = Color3.fromHex("#272822"), -- editor.background AcrylicBorder = Color3.fromHex("#414339"), -- dropdown.background AcrylicGradient = ColorSequence.new(Color3.fromHex("#272822"), Color3.fromHex("#1e1f1c")), --...
596
ActualMasterOogway/Fluent-Renewed
ActualMasterOogway-Fluent-Renewed-b224870/Src/Themes/Rose.luau
luau
.luau
return { Accent = Color3.fromRGB(180, 55, 90), AcrylicMain = Color3.fromRGB(40, 40, 40), AcrylicBorder = Color3.fromRGB(130, 90, 110), AcrylicGradient = ColorSequence.new(Color3.fromRGB(190, 60, 135), Color3.fromRGB(165, 50, 70)), AcrylicNoise = 0.92, TitleBarLine = Color3.fromRGB(140, 85, 105), Tab = Color3.f...
567
ActualMasterOogway/Fluent-Renewed
ActualMasterOogway-Fluent-Renewed-b224870/Src/Themes/Solarized Dark.luau
luau
.luau
return { Accent = Color3.fromHex("#2AA198"), -- String color as accent AcrylicMain = Color3.fromHex("#002B36"), -- editor.background AcrylicBorder = Color3.fromHex("#073642"), -- editor.lineHighlightBackground AcrylicGradient = ColorSequence.new(Color3.fromHex("#002B36"), Color3.fromHex("#002B36")), ...
565
ActualMasterOogway/Fluent-Renewed
ActualMasterOogway-Fluent-Renewed-b224870/Src/Themes/Solarized Light.luau
luau
.luau
return { Accent = Color3.fromHex("#b58900"), -- Using the extension button color as accent AcrylicMain = Color3.fromHex("#FDF6E3"), -- editor.background AcrylicBorder = Color3.fromHex("#DDD6C1"), -- editorGroup.border AcrylicGradient = ColorSequence.new(Color3.fromHex("#FDF6E3"), Color3.fromHex("#FDF6E...
620
ActualMasterOogway/Fluent-Renewed
ActualMasterOogway-Fluent-Renewed-b224870/Src/Themes/Typewriter.luau
luau
.luau
return { Accent = Color3.fromRGB(97, 161, 107), AcrylicMain = Color3.fromRGB(252, 245, 228), AcrylicBorder = Color3.fromRGB(189, 189, 189), AcrylicGradient = ColorSequence.new(Color3.fromRGB(252, 245, 228), Color3.fromRGB(228, 220, 200)), AcrylicNoise = 1, TitleBarLine = Color3.fromRGB(189, 18...
573
ActualMasterOogway/Fluent-Renewed
ActualMasterOogway-Fluent-Renewed-b224870/Src/Themes/United GNOME.luau
luau
.luau
return { Accent = Color3.fromHex("#48b258"), AcrylicMain = Color3.fromHex("#1e1e1e"), AcrylicBorder = Color3.fromHex("#444444"), AcrylicGradient = ColorSequence.new(Color3.fromHex("#1e1e1e"), Color3.fromHex("#1e1e1e")), AcrylicNoise = 0.92, TitleBarLine = Color3.fromHex("#444444"), Tab = C...
444
ActualMasterOogway/Fluent-Renewed
ActualMasterOogway-Fluent-Renewed-b224870/Src/Themes/VS Dark.luau
luau
.luau
return { Accent = Color3.fromHex("#007ACC"), -- activityBarBadge.background AcrylicMain = Color3.fromHex("#1E1E1E"), -- editor.background AcrylicBorder = Color3.fromHex("#303031"), -- widget.border AcrylicGradient = ColorSequence.new(Color3.fromHex("#1E1E1E"), Color3.fromHex("#1E1E1E")), AcrylicNoi...
584
ActualMasterOogway/Fluent-Renewed
ActualMasterOogway-Fluent-Renewed-b224870/Src/Themes/VS Light.luau
luau
.luau
return { Accent = Color3.fromHex("#007ACC"), -- activityBarBadge.background AcrylicMain = Color3.fromHex("#FFFFFF"), -- editor.background AcrylicBorder = Color3.fromHex("#919191"), -- checkbox.border AcrylicGradient = ColorSequence.new(Color3.fromHex("#FFFFFF"), Color3.fromHex("#FFFFFF")), AcrylicN...
591
ActualMasterOogway/Fluent-Renewed
ActualMasterOogway-Fluent-Renewed-b224870/Src/Themes/VSC Dark Modern.luau
luau
.luau
return { Accent = Color3.fromHex("#0078D4"), -- focusBorder AcrylicMain = Color3.fromHex("#181818"), -- activityBar.background AcrylicBorder = Color3.fromHex("#2B2B2B"), -- activityBar.border AcrylicGradient = ColorSequence.new(Color3.fromHex("#181818"), Color3.fromHex("#181818")), -- activityBar.backg...
599
ActualMasterOogway/Fluent-Renewed
ActualMasterOogway-Fluent-Renewed-b224870/Src/Themes/VSC Dark+.luau
luau
.luau
return { Accent = Color3.fromHex("#DCDCAA"), -- Based on function declarations color AcrylicMain = Color3.fromHex("#1E1E1E"), -- VS Code's default dark background AcrylicBorder = Color3.fromHex("#444444"), AcrylicGradient = ColorSequence.new(Color3.fromHex("#1E1E1E"), Color3.fromHex("#1E1E1E")), Ac...
512
ActualMasterOogway/Fluent-Renewed
ActualMasterOogway-Fluent-Renewed-b224870/Src/Themes/VSC Light High Contrast.luau
luau
.luau
return { Accent = Color3.fromHex("#5e2cbc"), -- Based on function color AcrylicMain = Color3.fromHex("#ffffff"), -- Light background AcrylicBorder = Color3.fromHex("#292929"), -- Based on embedded foreground AcrylicGradient = ColorSequence.new(Color3.fromHex("#ffffff"), Color3.fromHex("#ffffff")), ...
475
ActualMasterOogway/Fluent-Renewed
ActualMasterOogway-Fluent-Renewed-b224870/Src/Themes/VSC Light Modern.luau
luau
.luau
return { Accent = Color3.fromHex("#005FB8"), -- focusBorder AcrylicMain = Color3.fromHex("#F8F8F8"), -- activityBar.background AcrylicBorder = Color3.fromHex("#E5E5E5"), -- activityBar.border AcrylicGradient = ColorSequence.new(Color3.fromHex("#F8F8F8"), Color3.fromHex("#F8F8F8")), AcrylicNoise = 1...
602
ActualMasterOogway/Fluent-Renewed
ActualMasterOogway-Fluent-Renewed-b224870/Src/Themes/VSC Light+.luau
luau
.luau
return { Accent = Color3.fromHex("#795E26"), -- Function declarations color AcrylicMain = Color3.fromHex("#FFFFFF"), -- editor.background AcrylicBorder = Color3.fromHex("#D4D4D4"), -- menu.border AcrylicGradient = ColorSequence.new(Color3.fromHex("#FFFFFF"), Color3.fromHex("#FFFFFF")), AcrylicNoise...
598
ActualMasterOogway/Fluent-Renewed
ActualMasterOogway-Fluent-Renewed-b224870/Src/Themes/Viow Arabian Mix.luau
luau
.luau
return { Accent = Color3.fromHex("#7b36e2"), AcrylicMain = Color3.fromHex("#110e1a"), AcrylicBorder = Color3.fromHex("#444444"), AcrylicGradient = ColorSequence.new(Color3.fromHex("#110e1a"), Color3.fromHex("#110e1a")), AcrylicNoise = 0.92, TitleBarLine = Color3.fromHex("#444444"), Tab = C...
481
ActualMasterOogway/Fluent-Renewed
ActualMasterOogway-Fluent-Renewed-b224870/Src/Themes/Viow Arabian.luau
luau
.luau
return { Accent = Color3.fromHex("#7b36e2"), AcrylicMain = Color3.fromHex("#110e1a"), AcrylicBorder = Color3.fromHex("#444444"), AcrylicGradient = ColorSequence.new(Color3.fromHex("#110e1a"), Color3.fromHex("#110e1a")), AcrylicNoise = 0.92, TitleBarLine = Color3.fromHex("#444444"), Tab = C...
482
ActualMasterOogway/Fluent-Renewed
ActualMasterOogway-Fluent-Renewed-b224870/Src/Themes/Viow Darker.luau
luau
.luau
return { Accent = Color3.fromHex("#165fb3"), AcrylicMain = Color3.fromHex("#21252b"), AcrylicBorder = Color3.fromHex("#383838"), AcrylicGradient = ColorSequence.new(Color3.fromHex("#21252b"), Color3.fromHex("#21252b")), AcrylicNoise = 0.92, TitleBarLine = Color3.fromHex("#383838"), Tab = C...
457
ActualMasterOogway/Fluent-Renewed
ActualMasterOogway-Fluent-Renewed-b224870/Src/Themes/Viow Flat.luau
luau
.luau
return { Accent = Color3.fromHex("#165fb3"), AcrylicMain = Color3.fromHex("#191c28"), AcrylicBorder = Color3.fromHex("#191c28"), AcrylicGradient = ColorSequence.new(Color3.fromHex("#191c28"), Color3.fromHex("#191c28")), AcrylicNoise = 0.92, TitleBarLine = Color3.fromHex("#191c28"), Tab = C...
453
ActualMasterOogway/Fluent-Renewed
ActualMasterOogway-Fluent-Renewed-b224870/Src/Themes/Viow Light.luau
luau
.luau
return { Accent = Color3.fromHex("#0f96ff"), AcrylicMain = Color3.fromHex("#ffffff"), AcrylicBorder = Color3.fromHex("#d4d4d4"), AcrylicGradient = ColorSequence.new(Color3.fromHex("#ffffff"), Color3.fromHex("#ffffff")), AcrylicNoise = 1, TitleBarLine = Color3.fromHex("#d4d4d4"), Tab = Colo...
457
ActualMasterOogway/Fluent-Renewed
ActualMasterOogway-Fluent-Renewed-b224870/Src/Themes/Viow Mars.luau
luau
.luau
return { Accent = Color3.fromHex("#e32b00"), AcrylicMain = Color3.fromHex("#130c0f"), AcrylicBorder = Color3.fromHex("#28191d"), AcrylicGradient = ColorSequence.new(Color3.fromHex("#130c0f"), Color3.fromHex("#130c0f")), AcrylicNoise = 0.92, TitleBarLine = Color3.fromHex("#28191d"), Tab = C...
476
ActualMasterOogway/Fluent-Renewed
ActualMasterOogway-Fluent-Renewed-b224870/Src/Themes/Viow Neon.luau
luau
.luau
return { Accent = Color3.fromHex("#1591ff"), AcrylicMain = Color3.fromHex("#202432"), AcrylicBorder = Color3.fromHex("#191c28"), AcrylicGradient = ColorSequence.new(Color3.fromHex("#202432"), Color3.fromHex("#202432")), AcrylicNoise = 0.92, TitleBarLine = Color3.fromHex("#191c28"), Tab = C...
460
ActualMasterOogway/Fluent-Renewed
ActualMasterOogway-Fluent-Renewed-b224870/Src/Themes/Vynixu.luau
luau
.luau
return { Accent = Color3.fromRGB(90, 235, 45), AcrylicMain = Color3.fromRGB(30, 30, 30), AcrylicBorder = Color3.fromRGB(60, 60, 60), AcrylicGradient = ColorSequence.new(Color3.fromRGB(25, 25, 25), Color3.fromRGB(15, 15, 15)), AcrylicNoise = 0.94, TitleBarLine = Color3.fromRGB(65, 65, 65), Tab = Color3.fromRGB(...
378
ActualMasterOogway/Fluent-Renewed
ActualMasterOogway-Fluent-Renewed-b224870/Src/Themes/Yaru Dark.luau
luau
.luau
return { Accent = Color3.fromHex("#e95420"), AcrylicMain = Color3.fromHex("#383838"), AcrylicBorder = Color3.fromHex("#444444"), AcrylicGradient = ColorSequence.new(Color3.fromHex("#383838"), Color3.fromHex("#383838")), AcrylicNoise = 1, TitleBarLine = Color3.fromHex("#444444"), Tab = Colo...
425
ActualMasterOogway/Fluent-Renewed
ActualMasterOogway-Fluent-Renewed-b224870/Src/Themes/Yaru.luau
luau
.luau
return { Accent = Color3.fromHex("#e95420"), AcrylicMain = Color3.fromHex("#edeef0"), AcrylicBorder = Color3.fromHex("#D4D4D4"), AcrylicGradient = ColorSequence.new(Color3.fromHex("#edeef0"), Color3.fromHex("#edeef0")), AcrylicNoise = 1, TitleBarLine = Color3.fromHex("#D4D4D4"), Tab = Colo...
447
welcomestohell/prvdmwrong
welcomestohell-prvdmwrong-a935ae2/.lune/build.luau
luau
.luau
local collectPackages = require("@lune-lib/utils/collect-packages") local fs = require("@lune/fs") local path = require("@lune-lib/utils/path") local process = require("@lune/process") local roblox = require("@lune/roblox") local rootConfig = require("@lune-lib/root-config") local selectPackages = require("@lune-lib/ut...
3,108
welcomestohell/prvdmwrong
welcomestohell-prvdmwrong-a935ae2/.lune/lib/configure.luau
luau
.luau
-- Repository export type RootPublisher = { scope: string, registry: string, } local function publisher(x: RootPublisher) return table.freeze(x) end export type RepoConfig = { repository: string, homepage: string, packageDir: string, defaults: { authors: { string }, license: string, version: string, },...
363
welcomestohell/prvdmwrong
welcomestohell-prvdmwrong-a935ae2/.lune/lib/tiniest/tiniest.luau
luau
.luau
-- From dphfox/tiniest, licenced under BSD --!strict local tiniest_plugin = require("./tiniest_plugin") type Context = DescribeContext | RunContext type DescribeContext = { type: "describe", labels: { string }, add_test: (Test) -> (), } type RunContext = { type: "run", } export type ErrorReport = { type: "tin...
1,328
welcomestohell/prvdmwrong
welcomestohell-prvdmwrong-a935ae2/.lune/lib/tiniest/tiniest_expect.luau
luau
.luau
-- From dphfox/tiniest, licenced under BSD --!strict local tiniest_quote = require("./tiniest_quote") local tiniest_expect = {} type Context = { target: unknown, test: string, params: { unknown }, } local context: Context = { target = nil, test = "", params = {}, } local function fail(message: string?): neve...
1,033
welcomestohell/prvdmwrong
welcomestohell-prvdmwrong-a935ae2/.lune/lib/tiniest/tiniest_for_lune.luau
luau
.luau
-- From dphfox/tiniest, licensed under BSD3 --!strict local tiniest = require("./tiniest") local tiniest_expect = require("./tiniest_expect") local tiniest_pretty = require("./tiniest_pretty") local tiniest_snapshot = require("./tiniest_snapshot") local tiniest_time = require("./tiniest_time") local fs = require("@lu...
832
welcomestohell/prvdmwrong
welcomestohell-prvdmwrong-a935ae2/.lune/lib/tiniest/tiniest_plugin.luau
luau
.luau
-- From dphfox/tiniest, licenced under BSD --!strict export type Plugin = { is_tiniest_plugin: true, } local tiniest_plugin = {} function tiniest_plugin.configure(plugins: { any }?) if plugins ~= nil then for index, plugin in plugins do if not plugin.is_tiniest_plugin then error(`sanity check: plugin #{in...
180
welcomestohell/prvdmwrong
welcomestohell-prvdmwrong-a935ae2/.lune/lib/tiniest/tiniest_pretty.luau
luau
.luau
-- From dphfox/tiniest, licenced under BSD --!strict local tiniest = require("./tiniest") local tiniest_plugin = require("./tiniest_plugin") type Test = tiniest.Test type TestRunResult = tiniest.TestRunResult type RunResult = tiniest.RunResult export type Options = { plugins: nil | { tiniest_plugin.Plugin }, disabl...
1,762
welcomestohell/prvdmwrong
welcomestohell-prvdmwrong-a935ae2/.lune/lib/tiniest/tiniest_quote.luau
luau
.luau
-- From dphfox/tiniest, licenced under BSD --!strict local function tiniest_quote(x: unknown, given_indent_amount: number?): string if type(x) == "nil" or type(x) == "number" or type(x) == "boolean" or type(x) == "userdata" then return tostring(x) elseif type(x) == "string" then return string.format("%q", x) el...
367
welcomestohell/prvdmwrong
welcomestohell-prvdmwrong-a935ae2/.lune/lib/tiniest/tiniest_snapshot.luau
luau
.luau
-- From dphfox/tiniest, licensed under BSD3 --!strict local tiniest = require("./tiniest") local tiniest_quote = require("./tiniest_quote") type Test = tiniest.Test export type TestRunResult = tiniest.TestRunResult & { num_snapshots_updated: number, num_snapshots_obsolete: number, } export type RunResult = tiniest....
1,218
welcomestohell/prvdmwrong
welcomestohell-prvdmwrong-a935ae2/.lune/lib/tiniest/tiniest_time.luau
luau
.luau
-- From dphfox/tiniest, licenced under BSD --!strict local tiniest = require("./tiniest") local tiniest_pretty = require("./tiniest_pretty") type Test = tiniest.Test export type TestRunResult = tiniest.TestRunResult & { duration: number, } export type RunResult = tiniest.RunResult & { duration: number, } export ty...
615
welcomestohell/prvdmwrong
welcomestohell-prvdmwrong-a935ae2/.lune/lib/types.luau
luau
.luau
local configure = require("@lune-lib/configure") export type PackageContext = { rootDir: string, outDir: string, outWorkDir: string, packagesDir: string, packages: { [string]: Package }, } export type Package = { absolutePath: string, relativePath: string, config: configure.PackageConfig, } return nil
76
welcomestohell/prvdmwrong
welcomestohell-prvdmwrong-a935ae2/.lune/lib/utils/collect-packages.luau
luau
.luau
local configure = require("@lune-lib/configure") local fs = require("@lune/fs") local path = require("@lune-lib/utils/path") local types = require("@lune-lib/types") local function collectPackages(rootPath: string, packageDir: string) local packages: { types.Package } = {} local packageDirPath = path(rootPath, packa...
290
welcomestohell/prvdmwrong
welcomestohell-prvdmwrong-a935ae2/.lune/lib/utils/path.luau
luau
.luau
local process = require("@lune/process") local delimiter = if process.os == "windows" then "\\" else "/" local function path(...: string) return table.concat({ ... }, delimiter) end return path
44
welcomestohell/prvdmwrong
welcomestohell-prvdmwrong-a935ae2/.lune/lib/utils/print-divider.luau
luau
.luau
local styles = require("./styles") local LINE_COUNT = 80 local bold = styles.bold local dim = styles.dim local function printDivider(str: string, lineCount: number?) local dashRepeats = ((lineCount or LINE_COUNT) - str:len()) * 0.5 local extraIfUneven = if str:len() % 2 ~= 0 then 1 else 0 return print(bold(`{dim(...
126
welcomestohell/prvdmwrong
welcomestohell-prvdmwrong-a935ae2/.lune/lib/utils/select-packages.luau
luau
.luau
local process = require("@lune/process") local stdio = require("@lune/stdio") local types = require("@lune-lib/types") local function selectPackages(packages: { types.Package }): { names: { string }, nameToPackage: { [string]: types.Package }, selected: { string }, } local packageNames = {} local nameToPackage = ...
254
welcomestohell/prvdmwrong
welcomestohell-prvdmwrong-a935ae2/.lune/pesde-scripts/roblox_sync_config_generator.luau
luau
.luau
return (require)("./../../lune_packages/.pesde/pesde+scripts_rojo/0.1.0/scripts_rojo/roblox_sync_config_generator")
35
welcomestohell/prvdmwrong
welcomestohell-prvdmwrong-a935ae2/.lune/pesde-scripts/sourcemap-generator.luau
luau
.luau
return (require)("./../../lune_packages/.pesde/pesde+scripts_rojo/0.1.0/scripts_rojo/sourcemap_generator")
34
welcomestohell/prvdmwrong
welcomestohell-prvdmwrong-a935ae2/.lune/tiniest.luau
luau
.luau
local fs = require("@lune/fs") local tiniest = require("@lune-lib/tiniest/tiniest_for_lune").configure({}) local tests = tiniest.collect_tests(function() local function visitDir(path: string, luauPath: string) for _, entry in fs.readDir(path) do local fullPath = path .. "/" .. entry local fullLuauPath = luauP...
218
welcomestohell/prvdmwrong
welcomestohell-prvdmwrong-a935ae2/packages/dependencies/depend.luau
luau
.luau
local logger = require("./logger") local types = require("./types") local function useBeforeConstructed(unresolved: types.UnresolvedDependency) logger:fatalError({ template = logger.useBeforeConstructed, unresolved.dependency.name or "subdependency" }) end local unresolvedMt = { __metatable = "This metatable is loc...
202
welcomestohell/prvdmwrong
welcomestohell-prvdmwrong-a935ae2/packages/dependencies/init.luau
luau
.luau
local depend = require("@self/depend") local processDependencies = require("@self/process-dependencies") local sortByPriority = require("@self/sort-by-priority") local types = require("@self/types") export type Dependency<Self, Dependencies = nil, NewArgs... = ()> = types.Dependency<Self, Dependencies, NewArgs...> re...
90
welcomestohell/prvdmwrong
welcomestohell-prvdmwrong-a935ae2/packages/dependencies/logger.luau
luau
.luau
local logger = require("../logger") return logger.create("@prvdmwrong/dependencies", logger.standardErrorInfoUrl("dependencies"), { useBeforeConstructed = "Cannot use %s before it is constructed. Are you using the dependency outside a class method?", alreadyDestroyed = "Cannot destroy an already destroyed Root.", a...
74
welcomestohell/prvdmwrong
welcomestohell-prvdmwrong-a935ae2/packages/dependencies/process-dependencies.luau
luau
.luau
local lifecycles = require("../lifecycles") local types = require("./types") export type ProccessDependencyResult = { sortedDependencies: { types.Dependency<any> }, lifecycles: { lifecycles.Lifecycle }, } type Set<T> = { [T]: true } local function processDependencies(dependencies: Set<types.Dependency<any>>): Proc...
386
welcomestohell/prvdmwrong
welcomestohell-prvdmwrong-a935ae2/packages/dependencies/prvd.config.luau
luau
.luau
local configure = require("@lune-lib/configure") return configure.package({ name = "dependencies", description = "Dependency resolution logic for Prvd 'M Wrong", types = table.freeze({ ["Dependency<Self, Dependencies = nil, NewArgs... = ()>"] = "Dependency<Self, Dependencies, NewArgs...>", }), dependencies = ...
91
welcomestohell/prvdmwrong
welcomestohell-prvdmwrong-a935ae2/packages/dependencies/sort-by-priority.luau
luau
.luau
local types = require("./types") local function sortByPriority(dependencies: { types.Dependency<unknown> }) table.sort(dependencies, function(left: any, right: any) if left.priority ~= right.priority then return (left.priority or 1) > (right.priority or 1) end local leftIndex = table.find(dependencies, left)...
104
welcomestohell/prvdmwrong
welcomestohell-prvdmwrong-a935ae2/packages/dependencies/types.luau
luau
.luau
export type Dependency<Self, Dependencies = nil, NewArgs... = ()> = Self & { dependencies: Dependencies, priority: number?, new: (dependencies: Dependencies, NewArgs...) -> Dependency<Self, Dependencies, NewArgs...>, } export type UnresolvedDependency = { type: "UnresolvedDependency", dependency: Dependency<any>,...
88
welcomestohell/prvdmwrong
welcomestohell-prvdmwrong-a935ae2/packages/lifecycles/create.luau
luau
.luau
local await = require("./methods/await") local clear = require("./methods/unregister-all") local destroy = require("./methods/destroy") local lifecycleConstructed = require("./hooks/lifecycle-constructed") local methodToLifecycles = require("./method-to-lifecycles") local onRegistered = require("./methods/on-registered...
307
welcomestohell/prvdmwrong
welcomestohell-prvdmwrong-a935ae2/packages/lifecycles/handlers/fire-concurrent.luau
luau
.luau
local runtime = require("../../runtime") local types = require("../types") local function fireConcurrent<Args...>(lifecycle: types.Lifecycle<Args...>, ...: Args...) for _, callback in lifecycle.callbacks do runtime.threadpool.spawn(callback, ...) end end return fireConcurrent
63
welcomestohell/prvdmwrong
welcomestohell-prvdmwrong-a935ae2/packages/lifecycles/handlers/fire-sequential.luau
luau
.luau
local types = require("../types") local function fireSequential<Args...>(lifecycle: types.Lifecycle<Args...>, ...: Args...) for _, callback in lifecycle.callbacks do callback(...) end end return fireSequential
48
welcomestohell/prvdmwrong
welcomestohell-prvdmwrong-a935ae2/packages/lifecycles/hooks/lifecycle-constructed.luau
luau
.luau
local types = require("../types") local callbacks: { (lifecycle: types.Lifecycle) -> () } = {} local function onLifecycleConstructed(listener: (lifecycle: types.Lifecycle) -> ()): () -> () table.insert(callbacks, listener) return function() table.remove(callbacks, table.find(callbacks, listener)) end end return...
90
welcomestohell/prvdmwrong
welcomestohell-prvdmwrong-a935ae2/packages/lifecycles/hooks/lifecycle-destroyed.luau
luau
.luau
local types = require("../types") local callbacks: { (lifecycle: types.Lifecycle) -> () } = {} local function onLifecycleDestroyed(listener: (lifecycle: types.Lifecycle) -> ()): () -> () table.insert(callbacks, listener) return function() table.remove(callbacks, table.find(callbacks, listener)) end end return t...
90
welcomestohell/prvdmwrong
welcomestohell-prvdmwrong-a935ae2/packages/lifecycles/hooks/lifecycle-registered.luau
luau
.luau
local types = require("../types") local callbacks: { (lifecycle: types.Lifecycle, callback: (...unknown) -> ()) -> () } = {} local function onLifecycleRegistered<Args...>( listener: ( lifecycle: types.Lifecycle<Args...>, callback: (Args...) -> () ) -> () ): () -> () table.insert(callbacks, listener :: any) re...
120
welcomestohell/prvdmwrong
welcomestohell-prvdmwrong-a935ae2/packages/lifecycles/hooks/lifecycle-unregistered.luau
luau
.luau
local types = require("../types") local callbacks: { (lifecycle: types.Lifecycle, callback: (...unknown) -> ()) -> () } = {} local function onLifecycleUnregistered<Args...>( listener: ( lifecycle: types.Lifecycle<Args...>, callback: (Args...) -> () ) -> () ): () -> () table.insert(callbacks, listener :: any) ...
123
welcomestohell/prvdmwrong
welcomestohell-prvdmwrong-a935ae2/packages/lifecycles/init.luau
luau
.luau
local create = require("@self/create") local fireConcurrent = require("@self/handlers/fire-concurrent") local fireSequential = require("@self/handlers/fire-sequential") local lifecycleConstructed = require("@self/hooks/lifecycle-constructed") local lifecycleDestroyed = require("@self/hooks/lifecycle-destroyed") local l...
247
welcomestohell/prvdmwrong
welcomestohell-prvdmwrong-a935ae2/packages/lifecycles/logger.luau
luau
.luau
local logger = require("../logger") return logger.create("@prvdmwrong/lifecycles", logger.standardErrorInfoUrl("lifecycles"), { useAfterDestroy = "Cannot use Lifecycle after it is destroyed.", alreadyDestroyed = "Cannot destroy an already destroyed Lifecycle.", })
58