Yeah reset scene doesnt change the attributes. Whenever you want to reset it just use a change attribute behavior to change it back to its original state.
yeah you need to reset all game level stuff that should be at its default state on every scene start. My advice is make a scene manager object that is in every level. Have that thing do an init that just sets all your stuff. Level score =0, collectibles =0, hit the goal=0. you get the idea. Just keep it centralized and things will be easier for you. All actor level stuff will reset on their own, since they are a new instance.
Comments
Just keep it centralized and things will be easier for you. All actor level stuff will reset on their own, since they are a new instance.