Skip to content

calcSwimRunSpeed⚓︎

One of the movement events, calcSwimRunSpeed is used when calculating the movement speed while in water when running.

The movement event flow is described below:

--- @param e calcSwimRunSpeedEventData
local function calcSwimRunSpeedCallback(e)
end
event.register(tes3.event.calcSwimRunSpeed, calcSwimRunSpeedCallback)

Tip

An event can be claimed by setting e.claim to true, or by returning false from the callback. Claiming the event prevents any lower priority callbacks from being called.

Event Data⚓︎

  • mobile (tes3mobileActor): Read-only. The mobile actor whose speed is being calculated.
  • reference (tes3reference): Read-only. mobile’s related reference.
  • speed (number): The previous speed calculated, starting with the base engine values.
  • type (number): Read-only. The type of movement that was calculated. This is always 4 for this event.

calcMoveSpeedcalcWalkSpeedcalcRunSpeedcalcFlySpeedcalcSwimSpeedcalcSwimRunSpeed