hey guys i am kinda at a loss i have a item/weapon pickup system but i wanted to make it so when you pickup the item/ power up you get new moves with it just not sure how to go about doing it. any help would be appreciated
Seems like you just need a boolean variable for this. One pick-up, set the boolean to true. Use that boolean in front of whatever the input is for these “new moves” so, in order to do the move you have a boolean hooked up to a branch that only lets execution pass through if the boolean is true. The boolean gets set to true on “power up/item” pick up.