Animate a 3D UI Frame in Niantic Studio

If I wanted to have a popUp Frame slide up when a user clicks on a button would I not be able to do that using PositionAnimation.set? It doesn’t seem to work for me.

ecs.PositionAnimation.set(world, UiPopUp, {
          toX: 0,
          toY: -0.901,
          toZ: 3,
          autoFrom: true,
          duration: 4000,
          loop: false,
          reverse: false,
          easeIn: true,
          easeOut: false,
          easingFunction: 'Quadratic',
        })

Thanks for your help!

Ok got it to work but now the problem is that 3D UI width and high is does not allow percentage based, only fixed sizes. So this means that my popup will not be responsive with variety of different devices.

So is there a way to animate 2D UI currently or make 3D UI responsive?

@GeorgeButler , this would be very helpful thanks!