最近在工作中遇到Z轴和消失点的一些问题,特此总结。 在程序初始化的时候,需要手动把消失点设置为屏幕的正中央,如下: var per:PerspectiveProjection=new PerspectiveProjection(); per.projectionCenter=new Point(this.width/2,this.height/2); this.transform.perspectiveProjection=per; 这样就可以让图片在z轴无限大的时候也出现在屏幕正中央了。