when loading an entity with the code:
Code: Select all
pEntity = mSceneMgr->createEntity(sName, sFileName);Code: Select all
"(min.x <=ma.x && min.y <=ma.y min.z <=ma.z) && "The minimum corner of the box must be less then or equal to maximum corner"Code: Select all
/** Sets both minimum and maximum extents at once.
*/
inline void setExtents( const Vector3& min, const Vector3& max )
{
assert( (min.x <= max.x && min.y <= max.y && min.z <= max.z) &&
"The minimum corner of the box must be less than or equal to maximum corner" );
mExtent = EXTENT_FINITE;
mMinimum = min;
mMaximum = max;
}is this a known issue? what is going on?
thanks.
