0

现在我已经完成了 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()
4

1 回答 1

0

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

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

也可以设置各种其他属性,请查看备忘单

于 2021-10-07T01:54:47.600 回答