如何从 ShiVa3D 中的 URL 加载模型?
我正在尝试使用 代码在这里找到
我只是用一个名为 MainAI 的 AI 脚本创建了一个游戏,并为其添加了一个状态。
状态循环运行并加载模型(我可以在日志中看到这种情况发生)。
但是当加载完成,并且状态为“1”时,这行代码:
this.idle( )
不起作用,返回错误:
[+ warning ] {Scripting } AI 运行时错误:[状态] MainAi.loadObj_onLoop(第 20 行):尝试调用字段“idle”(零值)
知道如何停止循环运行吗?
I'm trying to load a model from a URL, using the code found here
I simply created a game with a single AI script called MainAI and added a state to this.
The loop of the state runs and loads the Model (I can see this happening in the logs).
But when the loading is complete, and the status is '1' the line of code:
this.idle( )
Does not work, an error is returned:
[+ Warning ] {Scripting }AI Runtime error : [State] MainAi.loadObj_onLoop (line 20): attempt to call field 'idle' (a nil value)
Any idea how I can stop the loop from running?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不完全理解 ShiVa 中的状态是如何工作的,但我创建了一个名为“空闲”的空状态。当加载模型的状态完成时,空闲状态将接管,效果很好。
I don't completely understand how States work in ShiVa, but I created an empty state called idle. When my State that loads my model is complete, the idle state takes over which works great.