Thanks I’ll give this a try. Hopefully this fixes the other issue I was having (non-bug) with negative scaling flipping the rotation direction of mirrored turrets in calculations (i.e. positive angles rotate anti clockwise).
Will the issue be fixed in the near future (would be cool) or do you recommend to find a workaround(1)?
(1) If so, do you think I should generate this game object (and its children) when the scene appears and then mirror it in runtime (in init function)? Or is there a better way to proceed?
PS : not sure to understand the" rotation in Y and Z" thing.
Why? There is no disadvantage to the second solution, besides the extra work of adding a one-frame flipbook animation in the atlas (which will NOT impact atlas size).
The collision object will not be affected. Remember that the Sprite is a component and the sprite.set_hflip() function operates on that component only.
Well, I certainly longed to do this recently! I am building a racing game track out of pieces, each piece is a model. One example, seen straight from above:
Flipping this to get the left turn would save time (and download time for the player). For the symmetrical track parts this can be solved by rotating them on the z axis, but the plan is to add non symmetrical ones too, and that’s when h-flip would be very handy.