You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Was trying to make vectors really hungry and changed "Vector_Migration_Food_Modifier": 100,
this causes floating point issue when the modification is exponential because we use:
fm = exp( sp * m_ModifierFood * pr ) - 1.0f; formula and sp and pr are often likely to be 1;
I think we need to limit Vector_Migration_Food_Modifier food size when using ModiferEquationType::EXPONENTIAL
The text was updated successfully, but these errors were encountered:
Was trying to make vectors really hungry and changed "Vector_Migration_Food_Modifier": 100,
this causes floating point issue when the modification is exponential because we use:
fm = exp( sp * m_ModifierFood * pr ) - 1.0f; formula and sp and pr are often likely to be 1;
I think we need to limit Vector_Migration_Food_Modifier food size when using ModiferEquationType::EXPONENTIAL
The text was updated successfully, but these errors were encountered: