Make FOV behavior...not janky?

This commit is contained in:
UnderSet 2024-02-20 14:57:46 +07:00 committed by GitHub
parent 6e8846f91c
commit 9d4e0e556a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -356,6 +356,9 @@ function PLAYER:CreateMove(cmd)
end
function PLAYER:CalcView(view)
if CLIENT then
view.fov = GetConVar("Beatrun_FOV"):GetFloat()
end
if self.TauntCam:CalcView(view, self.Player, self.Player:IsPlayingTaunt()) then return true end
end
@ -511,4 +514,4 @@ hook.Add("PlayerSpawn", "ResetStateTransition", function(ply, transition)
end)
end)
player_manager.RegisterClass("player_beatrun", PLAYER, "player_default")
player_manager.RegisterClass("player_beatrun", PLAYER, "player_default")