Nightcycle
Nightcycle
Currently most constructors only have 3-6 color roles ported
Many menus will have the button remain selected while the associated page is open - it would be nice to allow for buttons to be reused for this.
Helps prevent state desync that can happen with the current onSelect functionality
The technique I use to swap out the underlying instance for the Roact port causes an error in the React-Lua port, preventing me from adding it as an official compatibility...
Hello! I've been using darklua for a few weeks now and I'm really liking it! While using it I came across a relatively new painpoint when using it to deploy...
As the firing of these Roblox instances have no way to enforce type safety, I feel it's cleanest to make developers validate the types that are received. In this below...
I'm using immutable datatypes a lot recently, and being able to tag custom function return values for the must_use lint would be very helpful. While there is a [@mustuse rfc](https://github.com/luau-lang/rfcs/pull/83)...
I love type safety, and I make a lot of packages that are type safe. Like many type safety lovers on Roblox I've found myself in a bind - I...
Hello! Really like this tool and I use it a lot, thank you for all the hard work y'all put into it! That being said, I've found myself quite missing...
In a project I work on, this is how the code was originally formatted ```luau local Dictionary: {[string]: number} -- comment = { ["A"] = 1 ["B"] =2, ["C"] =...