ursina 鼠标无法控制
时间: 2023-06-10 09:05:21 浏览: 107
ursina-minecraft
5星 · 资源好评率100%
这可能是因为你没有正确设置鼠标控制的代码。你需要在你的ursina游戏中,使用类似于这样的代码来启用鼠标控制:
```python
from ursina import *
def update():
if held_keys['left mouse']:
# code to control game using left mouse button
if held_keys['right mouse']:
# code to control game using right mouse button
app = Ursina()
# game code
app.run()
```
确保你的代码正确配置,以便可以控制鼠标并执行你想要的操作。
阅读全文