mirror of
https://github.com/opensim/opensim.git
synced 2026-08-06 01:06:30 +08:00
Adjust velocity threshold for triggering flailing. Thanks to KittoFlora for researching this.
This commit is contained in:
@@ -3420,7 +3420,7 @@ namespace OpenSim.Region.Framework.Scenes
|
||||
if (e == null)
|
||||
return;
|
||||
|
||||
if ((Math.Abs(Velocity.X) > 0.05f) || (Math.Abs(Velocity.Y) > 0.05f))
|
||||
if ((Math.Abs(Velocity.X) > 0.1e-9f) || (Math.Abs(Velocity.Y) > 0.1e-9f))
|
||||
UpdateMovementAnimations();
|
||||
|
||||
if (m_invulnerable)
|
||||
|
||||
Reference in New Issue
Block a user