在 Ubuntu 上使用 Eclipse 设置 OGRE
我刚刚开始涉足 OGRE 的领域,以介绍自己使用 C++ 进行游戏编程(我之前已经做过一些 Unity)。
我在设置此处指定的教程应用程序时遇到了一些困难:
http://ogre3d.org/tikiwiki/Setting+Up+An+Application+-+Eclipse+-+Linux
我已经下载了 OGRE 1.7.3 作为 debian/Ubuntu 软件包(从 PPA/OGRE团队),所以它存在于我的硬盘驱动器上的某个地方。我想我不需要对 CMake 做任何事情,因为它已经被编译了。
在教程说明中,它在标题项目配置下说,它要求我提供 OGRE 的路径,但我找不到它。我查看了我知道的最常用的地方 /usr/bin (在 /usr/bin/OGRE 下),但它不在那里。它位于哪里?
如果有人能够启发使教程应用程序在屏幕上可见的最终步骤,我将不胜感激。谢谢。
I've just begun to wade in the waters of OGRE to introduce myself to game programming with C++ (I had done some Unity prior).
I'm having a bit of difficulty setting up the tutorial application as specified here:
http://ogre3d.org/tikiwiki/Setting+Up+An+Application+-+Eclipse+-+Linux
I have downloaded OGRE 1.7.3 as a debian/Ubuntu package (from the PPA/OGRE team) so it lives on my hard drive somewhere. I am presuming I don't need to do anything with CMake since it's already been compiled.
In the tutorial instructions it says under the heading Project Configuration it asks me to provide the path to OGRE but I cannot find it. I have looked in the most usual place I know /usr/bin (under /usr/bin/OGRE) and it's not there. Where is it located?
I would greatly appreciate if someone could enlighten the final steps to getting the tutorial application visible onscreen. Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,我可能正在回答我自己的问题,而且可能很蹩脚,但我做了足够的研究来弄清楚到底发生了什么。
http://www.ogre3d.org/forums/viewtopic。 php?f=2&t=47695
向我展示了我必须如何处理库以及在使用 SDK 时如何处理它们,而
安装 Ogre sdk 时出现问题?
给了我出现 ogre 模型所需的代码。
Yes, I might be answering my own question and it might be lame, but I did enough research to figure out what the heck is going on.
http://www.ogre3d.org/forums/viewtopic.php?f=2&t=47695
showed me what I had to do with libraries and what to do with them when using the SDK while
Problem with installing Ogre sdk?
gave me the code needed for the ogre model to appear.