Known Bugs

tuan kuranes

24-08-2006 17:25:11

No Know Bug for now.

If you think you found one:
- be sure to download latest SDK (redownload it or re-update ogeode source)
- Find a reproducable way to make the bug happen
- Post those steps here.

Any help appreciated.

tuan kuranes

18-12-2006 16:34:08

dOdeOpen and dOdeClose are called inside OgreOdeCore::World ctor and dtor instead of a global ogreode. (should be in a worldmanager that someone has to write). Only introduce bugs if you use special builds of ODE (Gimpact, modified ode alloc heap, etc)

eugen

28-05-2008 00:14:01

Error deleting geometry for body
void Body::removeGeometry(Geometry *g)
{
;
for (GeometryArray::iterator it = _geometries.begin ();
it != _geometries.end ();
++it)
{
// if (*it = g)
if (*it == g)
{
_geometries.erase (it);
return;
}
}
}

tuan kuranes

28-05-2008 13:42:24

@eugen: in svn, thanks !