DotSceneManager not displaying geometry.

Problems building or running the engine, queries about how to use features etc.
Post Reply
User avatar
muppet
Halfling
Posts: 66
Joined: Thu Jan 13, 2005 2:38 pm
Location: UK

DotSceneManager not displaying geometry.

Post by muppet »

Hi,

I have checked the latest release of Ogre along with all its add-ons out of CVS just four days ago, so everything is up to date. After building everything under linux, I find that when I run the DotScene demo included with the DotScene add-on, the skybox is only viewable, with the geometry no where to be found. I have doubly checked that all the corresponding packs
and .cfg files are correct.

I have searched the various threads about DotScene, but all previous problems like this were down to errors with the manager and have since been fixed. Does anyone know why the geometry is not being displayed??


Thanks.
User avatar
galdrusa
Gnoblar
Posts: 10
Joined: Tue Aug 31, 2004 1:22 pm
Location: Spain

Post by galdrusa »

In Demo_DotScene.h, check the chooseSceneManager function and try to use ST_GENERIC instead of ST_DOT_SCENE if you don't have done it.
User avatar
DWORD
OGRE Retired Moderator
OGRE Retired Moderator
Posts: 1365
Joined: Tue Sep 07, 2004 12:43 pm
Location: Aalborg, Denmark
Contact:

Post by DWORD »

Also check this thread. I know you updated recently, but just to be sure. The fix for that problem is in CVS.
User avatar
muppet
Halfling
Posts: 66
Joined: Thu Jan 13, 2005 2:38 pm
Location: UK

Post by muppet »

galdrusa: All is well on this front i'm afraid

DWORD: Nope, this wasn't the problem either. I checked out the latest release from cvs again (just to make sure), but still the same thing occurs.

:?
User avatar
galdrusa
Gnoblar
Posts: 10
Joined: Tue Aug 31, 2004 1:22 pm
Location: Spain

Post by galdrusa »

galdrusa: All is well on this front i'm afraid
Then, try with ST_DOT_SCENE, as the dotsceneoctree tutorial shows:

Code: Select all

   void chooseSceneManager(void)
   {
       mDotSceneMgr = static_cast <DotSceneManager *> mRoot->getSceneManager(ST_DOT_SCENE);
       mSceneMgr = mDotSceneMgr;
   }
User avatar
muppet
Halfling
Posts: 66
Joined: Thu Jan 13, 2005 2:38 pm
Location: UK

Post by muppet »

galdrusa wrote:
galdrusa: All is well on this front i'm afraid
Then, try with ST_DOT_SCENE, as the dotsceneoctree tutorial shows:

Code: Select all

   void chooseSceneManager(void)
   {
       mDotSceneMgr = static_cast <DotSceneManager *> mRoot->getSceneManager(ST_DOT_SCENE);
       mSceneMgr = mDotSceneMgr;
   }

Well I have tried this, but I would expect the demo to comply with the tutorial anyway.
User avatar
IFASS
Gnome
Posts: 387
Joined: Tue Jan 04, 2005 12:07 pm
Location: Netherlands

Post by IFASS »

Post Reply