MCPcopy Create free account
hub / github.com/OpenMW/openmw / getMutableSection

Method getMutableSection

components/lua/storage.hpp:34–37  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

32 sol::object getSection(
33 lua_State* state, std::string_view sectionName, bool readOnly, bool forMenuScripts = false);
34 sol::object getMutableSection(lua_State* state, std::string_view sectionName, bool forMenuScripts = false)
35 {
36 return getSection(state, sectionName, false, forMenuScripts);
37 }
38 sol::object getReadOnlySection(lua_State* state, std::string_view sectionName)
39 {
40 return getSection(state, sectionName, true);

Callers 4

initGlobalPackageMethod · 0.80
initPlayerPackageMethod · 0.80
initMenuPackageMethod · 0.80
TESTFunction · 0.80

Calls

no outgoing calls

Tested by 1

TESTFunction · 0.64