我的游戏中有一个类告诉精灵生成,这个类是一个MovieClip
附加代码。我spawn()
在这个类上调用函数并使用它的图形 API 绘制精灵。生成函数如下:
public function spawn(){
this.addChild(window)
window.x = 5
window.y = 10
window.width = this.width - 10
window.height = this.height - 10
window.graphics.clear()
window.graphics.drawRect(5, 10, this.width - 10, this.height - 20)
window.graphics.beginFill(0xFFFFFF, 1)
trace(window.visible)
}
问题是 childwindow
没有出现,尽管visible
跟踪返回true
。在此先感谢您的帮助!