-
Notifications
You must be signed in to change notification settings - Fork 293
lua_store
Steve Halliwell edited this page Oct 24, 2019
·
2 revisions
A common issue when working with multiple scenes in Unity is how to persist variable values from one scene to the next. By default, all scene objects and their properties are destroyed when you load another scene.
The Lua Store component provides an easy way around this when using Lua scripting. A shared global table called ‘store’ is bound in every Lua Environment when the scene starts. This global table persists between scene loads, which means you can set a store variable in one scene, load another scene, then access the same store variable and it will still retain the value you set earlier.
- Add a LuaStore to the first scene in your game (Tools >Fungus > Create > LuaStore).
- Set variables in the store in Lua, e.g.
store.name = "John"
- Load another scene, e.g. using the Load Scene command in Fungus
- Get the same variable from the store, e.g.
print(store.name) -- prints "John"