I was trying to create a child class of a child class then something went wrong. To be clear this is how my classes structured.
BaseClass>>1stChildClass>>2ndChildClass
The BaseClass is where I set up everything including the enhanced input system and the spacebar to print “I’m mother”
Then the 1stChildClass is a child class of the BaseClass, it has everything on default but added a line to print “I’m 1ST Child” when spacebar is pressed.
Finally the 2ndChildClass, it is a child class of the 1stChildClass, it has everything on default except another line to print “I’m 2ND Child” on spacebar.
Then I dragged the 2ndChildClass into the world, and possessed it. The expected behavioris when I press spacebar, it prints “I’m mother”,“I’m 1ST Child” and"I’m 2ND Child" in order but what I got was three “I’m 2ND Child”
I’m probably doing something wrong, I notice there is a priority setting in the class settings, maybe I should mess with that a bit?
Anyways, thanks in advance for any help offered!