Restored original animation thresholds

master
Brad Payne (Vir Linden) 2015-05-08 15:27:08 -04:00
parent 940adfe4d0
commit efe5cbc205
1 changed files with 2 additions and 4 deletions

View File

@ -42,12 +42,10 @@ using namespace std;
#define INCHES_TO_METERS 0.02540005f
//const F32 POSITION_KEYFRAME_THRESHOLD_SQUARED = 0.03f * 0.03f;
const F32 POSITION_KEYFRAME_THRESHOLD_SQUARED = 0.0f;
const F32 POSITION_KEYFRAME_THRESHOLD_SQUARED = 0.03f * 0.03f;
const F32 ROTATION_KEYFRAME_THRESHOLD = 0.01f;
//const F32 POSITION_MOTION_THRESHOLD_SQUARED = 0.001f * 0.001f;
const F32 POSITION_MOTION_THRESHOLD_SQUARED = 0.0f;
const F32 POSITION_MOTION_THRESHOLD_SQUARED = 0.001f * 0.001f;
const F32 ROTATION_MOTION_THRESHOLD = 0.001f;
char gInFile[1024]; /* Flawfinder: ignore */