commit config.h

This commit is contained in:
jacob 2024-09-25 17:02:20 -05:00
parent a6412ba4f1
commit ef7ba9e77d

View File

@ -29,15 +29,16 @@
#define PIXELS_PER_UNIT 256.0
#define GAME_FPS 50.0
#define GAME_FPS 300.0
#define GAME_TIMESCALE 1.0
#define GAME_PHYSICS_SUBSTEPS 4
/* How many ticks back in time should the user blend between?
* <Delay ms> = <USER_INTERP_OFFSET_TICK_RATIO> * <Game tick rate>
* E.g: At 1.5, the user thread will render 75ms back in time (if game thread runs at 50FPS)
*/
#define USER_INTERP_OFFSET_TICK_RATIO 1.1
#define USER_INTERP_ENABLED 1
#define USER_INTERP_ENABLED 0
/* ========================== *
* Settings