关于使用 SFML 进行游戏编程的理论问题
我已阅读 sfml-dev.org 上的整个教程部分并有一些问题。
视图到底是什么以及如何使用它们?
我应该在视图中还是在渲染窗口中渲染内容?
I have read whole tutorial section on sfml-dev.org
and have some question.
What are exactly views and how to use them ?
Should I render things in views or in renderwindow ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
视图就像 2D 相机。这些描述了您看到渲染的哪个部分(哪些部分将在窗口中)。
视图不是你渲染进去的东西。您应该在渲染窗口中渲染,并使用视图来控制渲染“世界”的可见部分。
Views are like a 2D cameras. Those describe that which section do you see (what parts will be in the window) of that you render.
View is not something like you render into. You should render in a RenderWindow, and use view(s) to control the visible part of the rendered "world".
我向你推荐这个教程,我发现它非常有用:
http://dev.my-gate.net/2012/06/using- sfview/
I would suggest you this tuto, I found it really useful:
http://dev.my-gate.net/2012/06/using-sfview/