bug in GOOF last version.

SexinzerO

12-09-2006 16:51:13

I get GOOF and OGRE last version in CVS and complie.
but Circle brust cannot move.



why?

tuan kuranes

12-09-2006 16:56:23

query code has changed in plsm2 cvs.

before getting height at a landscape point was:

mRayQuery->setQueryMask(RSQ_Height); //PLSM2 only


now :

mRayQuery->setDirection(Vector3::NEGATIVE_UNIT_Y)
mRayQuery->setQueryTypeMask(Ogre::SceneManager::WORLD_GEOMETRY_TYPE_MASK);
mRayQuery->setWorldFragmentType(SceneQuery::WFT_SINGLE_INTERSECTION);


And when intersecting :


mRayQuery->setQueryMask(RSQ_FirstTerrain);//PLSM2 only


now :

mRayQuery->setQueryTypeMask(Ogre::SceneManager::WORLD_GEOMETRY_TYPE_MASK);
mRayQuery->setWorldFragmentType(SceneQuery::WFT_SINGLE_INTERSECTION);

SexinzerO

12-09-2006 18:07:31

I must change code?

Falagard

12-09-2006 19:42:20

GOOF hasn't been updated to use the latest version of PLM2 from CVS, so yes you'll have to fix it yourself.

The next time I update GOOF I'd also like Tuan to create a revision number for PLM2 in CVS so I can tell people to sync to a specific revision instead of getting HEAD, that way I don't have to worry about trying to keep completely up to date with PLM2 as it changes.

tuan kuranes

13-09-2006 14:16:42

The next time I update GOOF I'd also like Tuan to create a revision number for PLM2 in CVS
revision number ? or branches ? or tag ?
Tag seems better to me, but perhaps you mean revision number for a reason ?

Falagard

13-09-2006 14:19:44

Tag, whatever, as long as I can give instructions to get a certain version out of CVS.

tuan kuranes

13-09-2006 14:22:24

Ok, I'll tag "interface-breaking version" versions then.