有没有办法调整 python 上 ursina window 面板的生成位置?

Is there a way to adjust the spawning position of the window panel in ursina on python?

现在我已经完成了 UI,但我似乎不知道如何在屏幕上定位它。顺便说一句,我对 ursina 还很陌生。

示例代码如下:

app = Ursina()

test = InputField(text='')

UI = WindowPanel(
    title='Menu',
    content=(
        Text('Username:'),
        test,
        Button(text='Submit', color=color.azure),
        Button(text='Free Play'),
        Button(text='Challenge'),
        Button(text='Leaderboard')
        ),
        popup=True,
        enabled=True
    )

app.run()

设置您应用的 position(以像素为单位):

app = Ursina(position=(100, 100))

还可以设置各种其他属性,请查看 cheat sheet