Flipping image or Scene

How can I flip/mirror an image (png file or sprite sheet) in a scene or flip the scene?
Preffered flipped image horizontally.
Thanks.

To flip a scene horizontally you just need to set Scene.Scale := Vector3(-1, 1, 1);

TDrawableImage has https://castle-engine.io/apidoc-unstable/html/CastleGLImages.TDrawableImage.html#DrawFlipped but I don’t think this is what you want.

1 Like

Thanks! Never guessed that.
:slight_smile: