对用顶点绘制的多边形进行动画处理
首先:我还有另一个问题 在 XNA 中创建 2D 多边形,但我回答了经过一天令人沮丧的研究和测试后,我自己做了。在那里你可以找到我现在拥有的代码。这是我的下一个问题,因为我找不到任何相关信息。如何为 VertexPositionColor[]
制作动画。
First off: I had another question Creating a 2D polygon in XNA but I answered it myself after a day of frustrating research and testing. There you can find the code I have right now. So here is my next question, as I can't find anything about it. How do I animate a VertexPositionColor[]
.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要对 VertexPositionColor[] 进行动画处理,您真正需要做的就是适当修改数组的元素,然后在 DrawUserPrimitives() 调用中使用新值。
例如,在游戏的 Update 方法中:
To animate a VertexPositionColor[], all you really need to do is modify the elements of the array appropriately and then use the new values in your DrawUserPrimitives() call.
For example, in the Update method of your game: