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 Cached = {} | |
local Properties = { | |
"AttachmentForward", | |
"AttachmentPoint", | |
"AttachmentPos", | |
"AttachmentRight", | |
"AttachmentUp", | |
"AlignType", | |
"MaxAngularVelocity", | |
"MaxTorque", |
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
{ | |
"Class Component": { | |
"prefix": "component", | |
"body": [ | |
"import Roact from \"@rbxts/roact\";", | |
"", | |
"interface ${1:App}State {}", | |
"interface ${1:App}Props {}", | |
"", | |
"export class ${1:App} extends Roact.Component<${1:App}Props, ${1:App}State> {", |
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 RunService = game:GetService("RunService") | |
local function Wait(clock: number?): number | |
clock = clock or 0 | |
local start = os.clock() | |
local delta = 0 | |
repeat | |
delta += RunService.Stepped:Wait() | |
until delta >= clock |
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 Executer = {} do | |
Executer.__index = Executer | |
function Executer.new(callback) | |
return setmetatable({ | |
callback = callback, | |
}, Executer) | |
end | |
function Executer:Destroy() |
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
-- @Author: Mullets-Gavin | |
-- @Desc: Option is a custom lightweight version of Rusts' "Option" enum on the lua shared global in Roblox (change to _G outside of Roblox) | |
local Option = {} | |
Option.__index = Option | |
function Option:Match(result: table): boolean | |
if typeof(result.type) == 'string' then | |
return result.type == self.type | |
end |
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
https://www.roblox.com/games/5372002879/Double-Vision-RDC-2020-GameJam | |
https://www.roblox.com/games/5371973600/20-20-Vision | |
https://www.roblox.com/games/5372844869/20-20-Vision | |
https://www.roblox.com/games/5371983339/2020-Vision-A-New-Perspective-on-the-Year#!/about | |
https://www.roblox.com/games/5372378757/A-Wild-Trip-RDC2020 | |
https://www.roblox.com/games/5372946509/Acuity | |
https://www.roblox.com/games/5371956373/agn-sia#!/about | |
https://www.roblox.com/games/5372006186/Airship-game-jam-2020 | |
https://www.roblox.com/games/5371748232/Best-Year-Ever | |
https://www.roblox.com/games/5371836136/Bloxlabs |