mirror of https://github.com/OpenMW/openmw.git
More Lua bindings
parent
87b5afb9bf
commit
32218f6dd5
@ -0,0 +1,13 @@
|
|||||||
|
#include "luabindings.hpp"
|
||||||
|
|
||||||
|
namespace MWLua
|
||||||
|
{
|
||||||
|
|
||||||
|
sol::table initCameraPackage(const Context& context)
|
||||||
|
{
|
||||||
|
sol::table api(context.mLua->sol(), sol::create);
|
||||||
|
// TODO
|
||||||
|
return context.mLua->makeReadOnly(api);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,18 @@
|
|||||||
|
#include "luabindings.hpp"
|
||||||
|
|
||||||
|
#include "luamanagerimp.hpp"
|
||||||
|
|
||||||
|
namespace MWLua
|
||||||
|
{
|
||||||
|
|
||||||
|
sol::table initUserInterfacePackage(const Context& context)
|
||||||
|
{
|
||||||
|
sol::table api(context.mLua->sol(), sol::create);
|
||||||
|
api["showMessage"] = [luaManager=context.mLuaManager](std::string_view message)
|
||||||
|
{
|
||||||
|
luaManager->addUIMessage(message);
|
||||||
|
};
|
||||||
|
return context.mLua->makeReadOnly(api);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue