How do I rotate around Y-axis in UI toolkit?

In the UI Toolkit, under the Transform section of a Visual Element, I am able to rotate it along one axis. Is it possible to rotate an element along Y-axis or other axes?

I would like to do something like this:

.card {
    transform: rotateY(180deg);
}

Hello! Only z axis rotation is supported currently, and as world space UI support is added, other axes will be supported.

1 Like