Is there a way to flip an ImageLabel that has a ScaleType set to Fit?

  1. What do you want to achieve?
    I want to make 2D characters appear in a dialog, and I want them to stand on two sides.
    There will be an image for each of their poses, and whenever I make them go to the other side the image flips.

  2. What is the issue?
    Since I don’t want the image to be stretched, I put their ScaleType to Fit, but when I flip the image using ImageRectSize and RectSizeOffset, the image goes off-bounds.

  3. What solutions have you tried so far?
    I tried making the images like a sprite sheet, but it still does the same thing.

Normal


RectSizeOffset = (0,0)
ImageRectSize = (199,359)

Flipped


RectSizeOffset = (199,0)
ImageRectSize = (-199,359)

Is there a way to make image flipping work with ScaleType Fit?
Thanks for reading :slight_smile: