闪存错误 #1063 参数计数不匹配
我收到以下奇怪的错误:
ArgumentError: Error #1063: Away3DLiteSprite() 上的参数计数不匹配。预期为 4,结果为 0。
I'm getting the following strange error:
ArgumentError: Error #1063: Argument count mismatch on Away3DLiteSprite(). Expected 4, got 0.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
听起来您正在调用
Away3DLiteSprite()
而不提供任何参数。找到代码中调用该函数的位置,并确保传入flarManager
、viewportWidth
、viewportHeight
和stage 参数。
It sounds like you're calling
Away3DLiteSprite()
without providing any parameters. Locate where in your code that function is being called and make sure you pass in theflarManager
,viewportWidth
,viewportHeight
andstage
parameters.