我查看了其他论坛并没有找到我的问题的答案,我知道对于 bge 脚本仅在连接到逻辑砖时才有效,并且为了确保我以正确的方式输入它我在 youtube 上观看了 bge 教程它对他有效,但对我无效。
如何下载 bge 模块?任何建议将不胜感激
在我观看视频后,我还注意到搅拌机控制台这样说:
错误:
Python script error - object 'Cube', controller 'Python':
Traceback (most recent call last):
File "moveX.py", line 1, in <module>
ImportError: No module named 'Bge'
Blender Game Engine Finished
脚本:
import bge
def main():
cont = bge.logic.getCurrentController()
owner = cont.owner
owner.positive.x += 0.1
main()