1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-02-05 12:15:36 +00:00

Merge branch 'luadoc_fix' into 'master'

Fix incorrect package name in lua docs

See merge request OpenMW/openmw!1971
This commit is contained in:
jvoisin 2022-06-04 13:28:05 +00:00
commit 1e20c8ba22

View file

@ -26,22 +26,22 @@
--- ---
-- Simulation time in seconds. -- Simulation time in seconds.
-- The number of simulation seconds passed in the game world since starting a new game. -- The number of simulation seconds passed in the game world since starting a new game.
-- @function [parent=#core] getSimulationTime -- @function [parent=#world] getSimulationTime
-- @return #number -- @return #number
--- ---
-- The scale of simulation time relative to real time. -- The scale of simulation time relative to real time.
-- @function [parent=#core] getSimulationTimeScale -- @function [parent=#world] getSimulationTimeScale
-- @return #number -- @return #number
--- ---
-- Game time in seconds. -- Game time in seconds.
-- @function [parent=#core] getGameTime -- @function [parent=#world] getGameTime
-- @return #number -- @return #number
--- ---
-- The scale of game time relative to simulation time. -- The scale of game time relative to simulation time.
-- @function [parent=#core] getGameTimeScale -- @function [parent=#world] getGameTimeScale
-- @return #number -- @return #number
--- ---