#2702 Increase hover height's limit

master
Andrey Kleshchev 2025-04-03 21:55:38 +03:00 committed by Andrey Kleshchev
parent f795ad6d62
commit 68f20d542e
1 changed files with 2 additions and 2 deletions

View File

@ -122,8 +122,8 @@ extern F32 ANIM_SPEED_MAX;
extern F32 ANIM_SPEED_MIN;
extern U32 JOINT_COUNT_REQUIRED_FOR_FULLRIG;
const F32 MAX_HOVER_Z = 2.0;
const F32 MIN_HOVER_Z = -2.0;
const F32 MAX_HOVER_Z = 3.0;
const F32 MIN_HOVER_Z = -3.0;
const F32 MIN_ATTACHMENT_COMPLEXITY = 0.f;
const F32 DEFAULT_MAX_ATTACHMENT_COMPLEXITY = 1.0e6f;