Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Papervision 3D中的精灵是什么?
Papervision3D 是一组自定义类。papervision 中的“精灵”是一个显示对象。以下代码将创建 Sprite 类的新副本。
var mySprite:Sprite = new Sprite();
您可以通过以下方式扩展精灵:
package { import flash.display.Sprite; public class extendedSprite extends Sprite{ } }
BasicView 类最终是 Sprite 类的扩展。