Hi, I have a game where I have a class Pattern where I want all my instances to have the same grid (Represented as a TArray<TArray<GridElement*>>).
So I have tried to make two static variables , one for the grid and another bool “Initialized” to be sure to only initialize and fill once the Grid.
In my static getter I call an Initializer function if my bool "Initialized " is at false and in that function I set “Initialized” to true;
When I try my game in the editor, the first try works as intended no problem.
If I stop my simulation and start it again I start to lose some informations on each of the GridElement * AND "Initialized " is already set to true and each restart I lose more informations until I fully restart the editor
Yup- static does that.
Static variables stick around even after you end the game- you have to completely exit the engine for them to clear.
Try to avoid using static unless you can deal with them using non-static variables.
Ie a singleton that you override (don’t check if the pointer is valid) or a subsystem (they have managed life-times).
Depending on exact goals, something like GameMode, GameInstance, GameState or as said in other comment Subsystem - makes sense. You can create a single USharpPattern* (or just an array of UCraftBox’es) here and use it when you create instance of object or whenever you need it.
I’d like to clarify, that’s not that it’s intended, but it’s a logical consequences of language structure.
Also worth mention that c++'s statics will work properly in packaged game(as long as pointers you storing are protected from GC by any way), as there is no editor attached, so they are not completely out of question (though their usefulness is limited), but it’s just a real pain to debug them in editor.