Benny/gamemodes/benny/gamemode/camera.lua

14 lines
238 B
Lua
Raw Normal View History

2024-03-07 20:34:16 -05:00
---------------------
-- Your Name is Benny
---------------------
function GM:CalcView( ply, pos, ang, fov )
local view = {
origin = pos + (ang:Forward() * -64),
angles = angles,
fov = fov,
drawviewer = true
}
return view
end