關於OGRE配置CEGUI系統出現的問題

來源:互聯網
上載者:User

新版的OGRE是同CEGUI分開的,為此我們得自己配置CEGUI,

本來只要下載CEGUI 0.71的SDK包,然後配置好就可以使用的,但是這裡有個奇怪的地方就是0.71版的SDK聽說只能Release編譯。

Debug編譯了出現。。。。函數 OgreMain_d.dll的錯誤,這個具體原因不明白。不過我使用了源碼編譯的方法就可以使用了。

這個是編譯的方法http://www.ogre3d.org/wiki/index.php/Building_CEGUI

使用的話設定好CEGUI的lib、include後,把CEGUI目錄裡的bin下的dll檔案考過來,

加上

#  if defined(_DEBUG)
#      pragma comment(lib, "CEGUIOgreRenderer_d.lib")
#      pragma comment(lib, "OgreMain_d.lib")
#      pragma comment(lib, "OIS_d.lib")
#      pragma comment(lib, "CEGUIBase_d.lib")
#  else
#      pragma comment(lib, "CEGUIOgreRenderer.lib")
#      pragma comment(lib, "OgreMain.lib")
#      pragma comment(lib, "OIS.lib")
#      pragma comment(lib, "CEGUIBase.lib")
#  endif

引用

#include "CEGUI.h"
#include "RendererModules/Ogre/CEGUIOgreRenderer.h"

就可以了,具體的使用方法就可以看這個了http://www.ogre3d.org/wiki/index.php/Basic_Tutorial_7

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.