GE Lua Documentation

Press F to search!

jumpTime

Definition


-- @/lua/ge/extensions/core/replay.lua:262

local function jumpTime(timeDiffInSeconds)
  --dump{'jumpTime', timeDiffInSeconds}
  local stream = getFileStream()
  if not stream then return end
  stream:stepTime(timeDiffInSeconds)
  ui_message({txt="replay.jump", context={seconds=timeDiffInSeconds}}, 2, "replay", "local_movies")
end

Callers