Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ IsStandingStillForSpecialEffects

bool Terraria.Player.IsStandingStillForSpecialEffects
get

Definition at line 2840 of file Player.cs.

2841 {
2842 get
2843 {
2844 if ((double)Math.Abs(velocity.X) < 0.05)
2845 {
2846 return (double)Math.Abs(velocity.Y) < 0.05;
2847 }
2848 return false;
2849 }
2850 }
static double Abs(double value)
Vector2 velocity
Definition Entity.cs:16