如何在XNA上移动3D模型?
我想控制我的 3D 模型,将其向各个方向移动,但我不知道如何做到这一点。有人有什么想法吗?
I want to control my 3D model, move it every direction but I don't know way to do this. Anybody have any idea ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您只需提供模型的世界变换效果即可。
在您的更新方法中,您可以修改位置:
您还可以将您的移动基于向前向量,或者平滑角度变化,将最终向前插值到当前,...
You only have to provide to the effect the model's world transform.
In your update method you can modify the position:
You also can base your movement in forward vector, or smooth the angle change interpolating the final forward with the current,...