inverse up and down
This commit is contained in:
parent
4ad13f1a03
commit
6f96f1f080
1 changed files with 2 additions and 2 deletions
|
@ -34,11 +34,11 @@ class Fov(Hack):
|
||||||
self.__fov = 90
|
self.__fov = 90
|
||||||
|
|
||||||
# Increase FOV
|
# 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
|
self.__fov += self.__factor
|
||||||
|
|
||||||
# Decrease FOV
|
# 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
|
self.__fov -= self.__factor
|
||||||
|
|
||||||
# If modified
|
# If modified
|
||||||
|
|
Reference in a new issue