-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.txt
48 lines (33 loc) · 1.25 KB
/
config.txt
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
# Which object should be loaded by the program
object = al.obj
# Scale of the object in the program
scale = 0.6
# Position of the object in the program
position = 0.0 0.0 0.0
# Default color
dcolor = 0.8 0.8 0.8
# Vertex model [0] separate, [1] indexed
vertexmodel = 0
# Should model be drawn in wireframe? [0] No, [1] Yes
wireframe = 0
# Should the model information be printed in the console? [0] No, [1] Yes
print = 0
# Should the model be rendered using Gouraud [0] or Phong [1] shading
phong = 1
# Camera options
# Camera start position. This is the position of the camera by default
cameraStartPos = 0.0 0.0 1.0
# Camera look at direction. This is what the camera looks at by default
cameraStartLookAt = 0.0 0.0 0.0
# Camera up direction. (Only change this if you really know what you're doing)
cameraStartUp = 0.0 1.0 0.0
# Camera field of view (FOV). Only used for the perspective camera
cameraFov = 45.0
# Orthographic camera size. Only used for orthographic camera.
cameraSize = 10.0 10.0
# Camera near clip plane. (Only change this if you know what you're doing)
cameraNearClip = 0.1
# Camera far clip plane. (Only change this if you know what you're doing)
cameraFarClip = 100.0
# Should the camera be in perspective? [1] Yes, [0] No
perspective = 1