mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-03-01 07:13:22 +00:00
add missing package to lua console
This commit is contained in:
parent
5553b00b84
commit
576850279b
@ -27,6 +27,9 @@ local env = {
|
|||||||
async = require('openmw.async'),
|
async = require('openmw.async'),
|
||||||
world = require('openmw.world'),
|
world = require('openmw.world'),
|
||||||
aux_util = require('openmw_aux.util'),
|
aux_util = require('openmw_aux.util'),
|
||||||
|
calendar = require('openmw_aux.calendar'),
|
||||||
|
time = require('openmw_aux.time'),
|
||||||
|
anim = require('openmw.animation'),
|
||||||
view = require('openmw_aux.util').deepToString,
|
view = require('openmw_aux.util').deepToString,
|
||||||
print = printToConsole,
|
print = printToConsole,
|
||||||
exit = function() player:sendEvent('OMWConsoleExit') end,
|
exit = function() player:sendEvent('OMWConsoleExit') end,
|
||||||
|
@ -30,6 +30,9 @@ local env = {
|
|||||||
nearby = require('openmw.nearby'),
|
nearby = require('openmw.nearby'),
|
||||||
self = require('openmw.self'),
|
self = require('openmw.self'),
|
||||||
aux_util = require('openmw_aux.util'),
|
aux_util = require('openmw_aux.util'),
|
||||||
|
anim = require('openmw.animation'),
|
||||||
|
calendar = require('openmw_aux.calendar'),
|
||||||
|
time = require('openmw_aux.time'),
|
||||||
view = require('openmw_aux.util').deepToString,
|
view = require('openmw_aux.util').deepToString,
|
||||||
print = printToConsole,
|
print = printToConsole,
|
||||||
exit = function() player:sendEvent('OMWConsoleExit') end,
|
exit = function() player:sendEvent('OMWConsoleExit') end,
|
||||||
|
@ -53,6 +53,8 @@ local env = {
|
|||||||
ui = require('openmw.ui'),
|
ui = require('openmw.ui'),
|
||||||
input = require('openmw.input'),
|
input = require('openmw.input'),
|
||||||
aux_util = require('openmw_aux.util'),
|
aux_util = require('openmw_aux.util'),
|
||||||
|
calendar = require('openmw_aux.calendar'),
|
||||||
|
time = require('openmw_aux.time'),
|
||||||
view = require('openmw_aux.util').deepToString,
|
view = require('openmw_aux.util').deepToString,
|
||||||
print = printToConsole,
|
print = printToConsole,
|
||||||
exit = exitLuaMenuMode,
|
exit = exitLuaMenuMode,
|
||||||
|
@ -79,10 +79,13 @@ local env = {
|
|||||||
self = require('openmw.self'),
|
self = require('openmw.self'),
|
||||||
input = require('openmw.input'),
|
input = require('openmw.input'),
|
||||||
postprocessing = require('openmw.postprocessing'),
|
postprocessing = require('openmw.postprocessing'),
|
||||||
|
anim = require('openmw.animation'),
|
||||||
ui = require('openmw.ui'),
|
ui = require('openmw.ui'),
|
||||||
camera = require('openmw.camera'),
|
camera = require('openmw.camera'),
|
||||||
aux_util = require('openmw_aux.util'),
|
aux_util = require('openmw_aux.util'),
|
||||||
debug = require('openmw.debug'),
|
debug = require('openmw.debug'),
|
||||||
|
calendar = require('openmw_aux.calendar'),
|
||||||
|
time = require('openmw_aux.time'),
|
||||||
view = require('openmw_aux.util').deepToString,
|
view = require('openmw_aux.util').deepToString,
|
||||||
print = printToConsole,
|
print = printToConsole,
|
||||||
exit = exitLuaMode,
|
exit = exitLuaMode,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user