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
-- poopbarrel/magical_noob | |
-- @submodule quakec | |
-- @description another quake movement reimplementation ig | |
-- Physics | |
local XZ = Vector3.new(1.0, 0.0, 1.0); | |
local CAPSULE_FLOOR_ANGLE = 0.7; | |
-- Convars | |
local PL_HITBOX_SIZE = Vector3.new(4, 6, 4); |
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
-- Average stack based JSON parser i guess | |
local function map(str) | |
local out = {}; | |
for word in str:gmatch('.') do | |
out[word] = true; | |
end | |
return out; | |
end |