我正在启动 Ursina,我打开终端并 pip3 install ursina,它工作了,现在在 VS 代码中运行基本代码,但没有弹出窗口。我在 mac OS Big Sur 上。这是我的代码。
from ursina import *
app = Ursina()
test_square = Entity(model = 'circle', color = color.red)
app.run()
根据文档,Ursina 在 Mac 上无法正常工作,但我有一个 mac,我尝试打开窗口并且它工作,你可以尝试重新安装你的 IDE 和 Ursina,如果它不工作,你的有一些问题苹果系统。
根据官方文档,Ursina
在 Windows 和 Linux 上效果最好。
平台
• Windows
• Linux
然而,这很奇怪,因为我在 Mac 上运行了代码并正确获取了窗口。请检查是否有任何错误被抛出,并确保您的launch.json
文件看起来像这样:
{
"version": "0.2.0",
"configurations": [
{
"name": "Python",
"type": "python",
"request": "launch",
"stopOnEntry": true,
"pythonPath": "C:/Users/Sanghun/AppData/Local/Programs/Python/Python35-32/python.exe",
"program": "${file}",
"debugOptions": [
"WaitOnAbnormalExit",
"WaitOnNormalExit",
"RedirectOutput"
]
},
如果您已经检查了这些内容,则可能是您的操作系统存在问题。