-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfreecam.toml
60 lines (52 loc) · 1.15 KB
/
freecam.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# Toggles the freecam on and off
[[keybinds]]
key = "F"
[keybinds.command]
command = "ToggleFreecam"
# Toggles the HUD
[[keybinds]]
key = "H"
[keybinds.command]
command = "ToggleHUD"
# Toggles time control
[[keybinds]]
key = "T"
[keybinds.command]
command = "ToggleTimeControl"
# Sets the game speed to 10% of its original
[[keybinds]]
key = "1"
[keybinds.command]
command = "SetTimeMultiplier"
multiplier = 0.1
# Sets the game speed to 50% of its original
[[keybinds]]
key = "5"
[keybinds.command]
command = "SetTimeMultiplier"
multiplier = 0.5
# Sets the game speed to its original pace
[[keybinds]]
key = "0"
[keybinds.command]
command = "SetTimeMultiplier"
multiplier = 1.0
# Sets the game speed to 0.001% of its original.
# Don't use 0.0 because I am dividing with this.
[[keybinds]]
key = "P"
[keybinds.command]
command = "SetTimeMultiplier"
multiplier = 0.001
# Sets the camera movement to its original speed
[[keybinds]]
key = "C"
[keybinds.command]
command = "SetCameraSpeedMultiplier"
multiplier = 1.0
# Sets the camera movement to 10 times its original speed
[[keybinds]]
key = "8"
[keybinds.command]
command = "SetCameraSpeedMultiplier"
multiplier = 10.0