Hi, I’m new to Korge and am currently trying to bu...
# korge
m
Hi, I’m new to Korge and am currently trying to build a sample game to get familiar with an engine. I was wondering if there is a way to do a flip animation with a Korge view? Smth similar to
rotateY
animation in CSS: https://developer.mozilla.org/en-US/docs/Web/CSS/transform-function/rotateY
d
If there is no perspective, you can use
scaleX
to achieve the same effect. If there is perspective, not supported directly. But you can use a shader to achieve that effect.
m
will try, thanks!