20 lines
528 B
Plaintext
20 lines
528 B
Plaintext
;; module options
|
|
; name of last module loaded
|
|
module xibalba
|
|
;; video options
|
|
v_width 1024
|
|
v_height 768
|
|
; fullscreen flag: windowed = 0, fullscreen = 1
|
|
v_fullscreen 0
|
|
; video renderer: software = 0, opengl = 1
|
|
v_renderer 1
|
|
; frames per second limit - only used if v_framecap is enabled
|
|
v_fps 60
|
|
; framerate cap: disabled = 0, enabled = 1
|
|
v_framecap 0
|
|
;; engine options
|
|
; tickrate in nanoseconds
|
|
tickrate 40000000
|
|
; type of clock - difference = 0 (runs based on player movements); monotonic = 1 (runs based on tickrate)
|
|
clock 0
|