inverse up and down

This commit is contained in:
Mylloon 2023-04-01 15:22:27 +02:00
parent 4ad13f1a03
commit 6f96f1f080
Signed by: Anri
GPG key ID: A82D63DFF8D1317F

View file

@ -34,11 +34,11 @@ class Fov(Hack):
self.__fov = 90
# Increase FOV
elif GetAsyncKeyState(self.vmap["PAGE_UP"]) and self.__fov < 130:
elif GetAsyncKeyState(self.vmap["PAGE_DOWN"]) and self.__fov < 130:
self.__fov += self.__factor
# Decrease FOV
elif GetAsyncKeyState(self.vmap["PAGE_DOWN"]) and self.__fov > 50:
elif GetAsyncKeyState(self.vmap["PAGE_UP"]) and self.__fov > 50:
self.__fov -= self.__factor
# If modified