In the tutorial he makes a new game state which spawns a second character (i want to create that character switching mechanic for my game prototype).
I did everything exactly like in the tutorial, but somehow the Event begin play node from my game state is never getting fired… i already tried to check this with some print strings and breakpoints…
I did set it correctly in the project/work settings… what is going on here?
This is old but this is probably the infamous modevsbase class conflict. You gotta make sure everything is consistent in that regard. Most classes have a “Base” class from which they derive (sort of) but you can’t mix them. For example if you use a game mode base class, then all your other classes should also be base if possible. otherwise events won’t fire properly. kind of a pain
I was having the same issue with a new project. One thing to look at is the parent class of your custom game state. If the parent is “Game State” try reparenting it to “Game State Base”.