Flipping a sprite on its y axis is fine when its symmetrical but when it comes to something that is asymmetrical it just doesnt add up. Example sprite holding sword and shield. Flipping will not show the sword and shield in the correct hands. What I came up with is this.
I put two sprites under the parent player node, one showing it facing left and one facing right. When hitting right input I use hide() on the left one and than show() on the right one, when hitting left input vice versa. This essentially means that I'll have to have to double the amount of animations and call them appropriately based on input. For one test image this is fine but something tells me later on as a game grows more complex this could get hairy. Is this method fine or there a better alternative using the godot engine?
One possible idea I had was having the armaments whatever they are as separate objects that would change positions based on direction. This would mean less images to load at start but I also foresee some annoying bugs with that popping up.
Another thought I had was to load and delete the sprites dynamically, but I'm most likely over complicating this by doing so. Something tells me there a very simple way to pull this off that I'm just not seeing in my limited experience with this engine.
I'd be interested in hearing the communities thoughts on this.