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

◆ KeyDoubleTap()

void Terraria.Player.KeyDoubleTap ( int keyDir)
inline

Definition at line 53370 of file Player.cs.

53371 {
53372 int num = 0;
53373 if (Main.ReversedUpDownArmorSetBonuses)
53374 {
53375 num = 1;
53376 }
53377 if (keyDir != num)
53378 {
53379 return;
53380 }
53381 if (setVortex && !mount.Active)
53382 {
53384 }
53385 if (setForbidden)
53386 {
53389 {
53391 }
53392 }
53393 }
bool Active
Definition Mount.cs:345
bool setForbiddenCooldownLocked
Definition Player.cs:2389
bool vortexStealthActive
Definition Player.cs:2411
void CommandForbiddenStorm()
Definition Player.cs:53409
void MinionRestTargetAim()
Definition Player.cs:53544
bool setForbidden
Definition Player.cs:2387

References Terraria.Main.ReversedUpDownArmorSetBonuses.