14 lines
238 B
Lua
14 lines
238 B
Lua
|
|
||
|
---------------------
|
||
|
-- 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
|