在我的文档类构造函数中,跟踪(this == root)返回true.稍后在构造函数中,调用另一个类的构造函数.但是,此构造函数声明root为null.最后,从事件监听器的跟踪给出了root是[object Stage]的结果.
我的目标是拥有一个document Class的单个实例(在MainGame.as中),并且能够在我的ActionScript程序中将其称为(root作为MainGame).我怎样才能做到这一点?
如果重要,我的所有代码都在默认包中.
谢谢!
解决方法 将displayObject添加到显示列表后,displayObject的根特性将成为对document Class的引用.您可以继续使用root,但请注意,只有显示列表中的对象才有效.You can read more about root here:
总结The root property of the Stage object is the Stage object itself. The root property is set to null for any display object that has not been added to the display List,unless it has been added to a display object container that is off the display List but that is a child of the top-most display object in a loaded SWF file.
以上是内存溢出为你收集整理的actionscript-3 – `root`在不同的地方发生变化全部内容,希望文章能够帮你解决actionscript-3 – `root`在不同的地方发生变化所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)