Documents _version attribute of stage

This commit is contained in:
AliasAlreadyTaken 2024-07-07 22:05:17 +02:00
parent 657d5b2c74
commit 93b177d18c

View File

@ -54,7 +54,8 @@ local stage = {
...
},
overwrite = true, -- optional, boolean, false breaks during registration if the node has on_timer or on_construct. true overwrites regardless
_previous = {} -- DO NOT USE, this holds the history to be accessed by delete_stage only
_previous = {}, -- DO NOT USE, this holds the history to be accessed by delete_stage only
_version = 1, -- DO NOT USE, this holds the version of the datastructure, will increase when datastructure changes
}
}
```