Start main loop
This commit is contained in:
parent
ee15824329
commit
e21d5b7825
5 changed files with 86 additions and 24 deletions
10
settings.h
10
settings.h
|
@ -9,10 +9,20 @@
|
|||
#define LCR_SETTING_RESOLUTION_Y 768
|
||||
#endif
|
||||
|
||||
#ifndef LCR_SETTING_FPS
|
||||
/** Rendering frames per second. Note this only applies to graphics, NOT
|
||||
physics. */
|
||||
#define LCR_SETTING_FPS 30
|
||||
#endif
|
||||
|
||||
#ifndef LCR_SETTING_RESOLUTION_SUBDIVIDE
|
||||
#define LCR_SETTING_RESOLUTION_SUBDIVIDE 1
|
||||
#endif
|
||||
|
||||
#ifndef LCR_SETTING_FREE_CAMERA_SPEED
|
||||
#define LCR_SETTING_FREE_CAMERA_SPEED 50
|
||||
#endif
|
||||
|
||||
#ifndef LCR_SETTING_MAX_VERTICES
|
||||
/** Maximum number of vertices for 3D rendering. Lower number will decrease
|
||||
RAM usage but will prevent larger maps from being loaded. */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue