mirror of
https://github.com/JonnyBro/beatrun.git
synced 2025-01-06 17:13:01 +05:00
18 lines
No EOL
428 B
Lua
18 lines
No EOL
428 B
Lua
util.AddNetworkString("VManip_SimplePlay")
|
|
util.AddNetworkString("VManip_StopHold")
|
|
|
|
--VManip_SimplePlay: WriteString of anim to play on client (not guaranteed to play)
|
|
--VManip_StopHold: WriteString of anim to stop holding on client
|
|
|
|
local function VManip_FindAndImport()
|
|
|
|
local path="vmanip/anims/"
|
|
local anims=file.Find(path.."*.lua","lsv")
|
|
|
|
for k,v in pairs(anims) do
|
|
AddCSLuaFile(path..v)
|
|
end
|
|
|
|
end
|
|
|
|
VManip_FindAndImport() |