在 Qt 中启动 2D 游戏

发布于 2024-11-29 05:43:43 字数 1539 浏览 1 评论 0原文

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

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

发布评论

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

评论(3

浅听莫相离 2024-12-06 05:43:43

Qt 中的 OpenGl 本身与没有 Qt 的 Opengl 没有什么不同。唯一的区别是创建 OpenGL 窗口的方式。

您需要派生 QGLWidget 类并重载 PaintGL 成员函数。看一下 HelloGL 示例(它已经相当广泛了)。

现在您已经有了 OpenGL 窗口,可以查找可在 Internet 上找到的普通 OpenGL 教程。

OpenGl by itself in Qt is not different from Opengl without Qt. The only difference is the way you create your OpenGl window.

You need to derive the QGLWidget class and overload the PaintGL-memberfunction. Take a look at the HelloGL example (which is already quite extensive).

Now that you have your OpenGl window look for normal OpenGl tutorials which are available all over the internet.

别低头,皇冠会掉 2024-12-06 05:43:43

如果您使用 Qt 进行 2D 游戏,我会让 Qt 处理它的 OpenGL 方面,并且只使用 QGraphicsScene 等。

If you're using Qt for 2D games, I'd let Qt handle the OpenGL aspect of it and just use QGraphicsScene et al.

瀟灑尐姊 2024-12-06 05:43:43

如果您考虑使用基于 Qt/QML 的引擎,它可以为您提供跨平台支持的优势以及许多有用的游戏组件来处理多种显示分辨率和分辨率。长宽比、动画、粒子、物理、多点触控、手势、路径查找等 (API参考),请查看 V-Play (v-play.net)。

他们还为您提供了针对不同技能水平的多个教程,并为塔防、平台游戏或益智游戏等最成功的游戏类型提供了即用型游戏模板。 (V-Play 示例和演示

If you consider using a Qt/QML based engine, giving you the advantages of cross-platform support and many useful game components for handling multiple display resolutions & aspect ratios, animations, particles, physics, multi-touch, gestures, path finding and more (API reference), take a look at V-Play (v-play.net).

They also provide you with several tutorials for different skill levels and come with ready-to-use game templates for the most successful game genres like tower defense, platform games or puzzle games. (V-Play examples & demos)

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