Fireset
Loading...
Searching...
No Matches
settings.h
1#pragma once
2
3//=========== Globals =========================================================================//
4#define PI 3.14159265359
5//=========== Physics =========================================================================//
6#define PHYS_DT 1.0f / 60.0f // Base physics delta time | default: 1.0f / 60.0f
7#define PHYS_SUBSTEPS 2 // Physics calculation substeps | default: 2
8#define PHYS_MAX_VELOCITY 1000 // Max linear vel of bodyes | default: 1000
9#define PHYS_MAX_ANGULAR 10 // Max angular vel of bodyes | default: 10
10//=============================================================================================//