Post a message
Replying to:
Local Variables
11 June 2020
Local Variables are one of the most useful Game Creator tools. They allow to access different variable instances from different game objects but with the same name.
For example, let’s say you want to give each character of your game a unique name. You can create a Local Variables component on each one of them and create a local variable called name. When accessing it, each character will return its own unique name. Local Variables work pretty much like Global Variables. The difference is (...)