Papervision 3D 中的精灵是什么?

发布于 2024-08-29 13:56:28 字数 30 浏览 2 评论 0原文

Papervision 3D 中的精灵是什么?

What is a sprite in papervision 3D?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

冷夜 2024-09-05 13:56:30

Papervision3D 是一组自定义类。 papervision 中的“精灵”是一个显示对象。以下代码将创建 Sprite 类的新副本。

var mySprite:Sprite = new Sprite();

您可以通过以下方式扩展 sprite:

package {
   import flash.display.Sprite;

   public class extendedSprite extends Sprite{

   }
}

BasicView 类最终是 Sprite 类的扩展。

Papervision3D is a set of custom classes. A 'sprite' in papervision is a display object. The following code will create a new copy of the Sprite class.

var mySprite:Sprite = new Sprite();

You can extend the sprite in the follow way:

package {
   import flash.display.Sprite;

   public class extendedSprite extends Sprite{

   }
}

The BasicView class is, in the end, an extended of the Sprite class.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文