在 XNA 中渲染缓冲区到texture2D对象

发布于 2024-07-26 05:27:53 字数 56 浏览 4 评论 0原文

在XNA中,有没有一种方法可以在绘制到纹理对象之后渲染到屏幕之前渲染spriteBatch的内容?

In XNA is there a way to render the contents of a spriteBatch after drawing to a texture object before rendering to the screen?

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

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

发布评论

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

评论(3

简美 2024-08-02 05:27:53

您需要切换 spritebatch 的渲染目标,然后从中获取纹理。 这篇 MSDN 文章解释得很好。

http://msdn.microsoft.com/en-us/library/bb976073。 ASPX

You'll need to switch your render target for the spritebatch and then grab the texture out of it. This MSDN article explains it pretty well.

http://msdn.microsoft.com/en-us/library/bb976073.aspx

扭转时空 2024-08-02 05:27:53

正如六边形已经回答的那样,是的,可以。 但如果您使用半透明的精灵,您可能会遇到麻烦。 原因是,两个重叠的精灵最终不会在屏幕外渲染目标中获得正确的 alpha 值。

为了使事情正确,您必须制作自己的 SpriteBatch 并开始使用预乘 alpha。

As Hexxagonal already answered, yes you can. But you might get into trouble, if you are using sprites with translucency. The reason is, that two overlapping sprites wont end up with the right alphavalue in your offscreen rendertarget.

To make things right you will have to make your own SpriteBatch and start using premultiplied alpha.

可可 2024-08-02 05:27:53

这是 Shawn Hargreaves 优秀博客的附加链接,他在其中讨论了 rendertarget 语义:
http://blogs.msdn.com/肖恩哈尔/archive/2007/02/04/xna-rendertarget-semantics.aspx

Here's an additional link to Shawn Hargreaves' excellent blog where he talks about rendertarget semantics:
http://blogs.msdn.com/shawnhar/archive/2007/02/04/xna-rendertarget-semantics.aspx

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