aboutsummaryrefslogtreecommitdiff
path: root/gamemode/core/animation/cl_animate.lua
diff options
context:
space:
mode:
Diffstat (limited to 'gamemode/core/animation/cl_animate.lua')
-rw-r--r--gamemode/core/animation/cl_animate.lua7
1 files changed, 7 insertions, 0 deletions
diff --git a/gamemode/core/animation/cl_animate.lua b/gamemode/core/animation/cl_animate.lua
index c7dc19d..4b86234 100644
--- a/gamemode/core/animation/cl_animate.lua
+++ b/gamemode/core/animation/cl_animate.lua
@@ -1,3 +1,7 @@
+--- Client side of the animation subsystem
+-- Stores the code to run animations client side.
+-- Also see @{sh_animations.lua} and @{sv_animate.lua}
+-- @client cl_animate.lua
net.Receive("art_start_animation",function()
local what = net.ReadEntity()
@@ -12,6 +16,9 @@ net.Receive("art_stop_animation",function()
what:StopLuaAnimation(anim)
end)
+--- All visible players and their sequences.
+-- @table sequences
+-- Stores all the sequences for all visible players
local sequences = {}
net.Receive("art_start_sequence",function()
local who = net.ReadEntity()