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

◆ GrapplePullSpeed()

static void Terraria.ModLoader.ProjectileLoader.GrapplePullSpeed ( Projectile projectile,
Player player,
ref float speed )
inlinestatic

Definition at line 807 of file ProjectileLoader.cs.

808 {
809 projectile.ModProjectile?.GrapplePullSpeed(player, ref speed);
810 EntityGlobalsEnumerator<GlobalProjectile> enumerator = HookGrapplePullSpeed.Enumerate(projectile).GetEnumerator();
811 while (enumerator.MoveNext())
812 {
813 enumerator.Current.GrapplePullSpeed(projectile, player, ref speed);
814 }
815 }
static GlobalHookList< GlobalProjectile > HookGrapplePullSpeed

References Terraria.ModLoader.ProjectileLoader.HookGrapplePullSpeed, and Terraria.Projectile.ModProjectile.

Referenced by Terraria.Player.GetGrapplingForces().

+ Here is the caller graph for this function: