VE Lua Documentation

Press F to search!

updateGFXLastStage

Definition


-- @/lua/vehicle/powertrain.lua:223

local function updateGFXLastStage(dt)
  for i = 1, deviceCount, 1 do
    local device = orderedDevices[i]
    if device.updateGFXLastStage then
      device:updateGFXLastStage(dt)
    end
  end
end

Callers

@/lua/vehicle/powertrain.lua
    if device.updateGFXLastStage then
      device:updateGFXLastStage(dt)
    end
@/lua/vehicle/main.lua
  recovery.updateGFX(dtSim)
  powertrain.updateGFXLastStage(dtSim)
end