-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.dat
68 lines (45 loc) · 946 Bytes
/
config.dat
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
61
62
63
64
65
66
67
68
# Window Setup
# ============
windowWidth=800
windowHeight=600
windowTitle=My Window
fullScreenOnStartup=0
backgroundR=0
backgroundG=0
backgroundB=0
backgroundA=1
# Shader Setup
# ============
vertexShader=Shaders/shader.vert
fragmentShader=Shaders/shader.frag
useWireframes=0
backfaceCull=0
# Planet and Model Setup
# ======================
planetFile=planets.dat
#sunScale=0.01
sunScale=0.4
#sunModel=Models/sun.obj
sunModel=Models/sunHP.obj
#planetModel=Models/planet.obj
planetModel=Models/planetHP.obj
backgroundScale=33.0
backgroundModel=Models/background.obj
# Behaviour Setup
# ===============
physicsEnabled=0
lockSun=1
startOnFPSStyle=0
movementSpeed=50
mouseSpeed=-7
scrollSpeed=5
# Keybindings
# ===========
KeyBinding_Quit=256
KeyBinding_Reset=82
KeyBinding_MoveForward=87
KeyBinding_MoveBackward=83
KeyBinding_MoveLeft=65
KeyBinding_MoveRight=68
KeyBinding_ToggleFPSStyle=84
KeyBinding_TogglePhysicsEnabled=80