VE Lua Documentation

Press F to search!

shiftUpOnDown

Definition


-- @/lua/vehicle/controller/vehicleController/vehicleController.lua:602

local function shiftUpOnDown()
  if controlLogicModule.shiftUpOnDown then
    controlLogicModule.shiftUpOnDown()
  elseif controlLogicModule.shiftUp then
    controlLogicModule.shiftUp()
  end
end

Callers

@/lua/vehicle/controller/vehicleController/vehicleController.lua
  if controlLogicModule.shiftUpOnDown then
    controlLogicModule.shiftUpOnDown()
  elseif controlLogicModule.shiftUp then
@/lua/vehicle/extensions/tech/CANBus/ProjectBavariaShifter.lua
        elseif gear == "M" then
          controller.mainController.shiftUpOnDown()
          controller.mainController.shiftUpOnUp()
@/lua/vehicle/controller/vehicleController/shiftLogic/manualGearbox.lua

local function shiftUpOnDown()
  --print("shift up - onDown")