|
在编译 osgdb_EnginePAL 的时候Init参数不匹配,
void PalWorldBase::createImplementation()
{
if ( !_palScene ) throw std::exception("PalWorldBase::createImplementation(): cannot create world (no scene).");
_palScene->Init( _gravity.x(), _gravity.y(), _gravity.z() ); // 这里出错
}
error C2660: “palPhysics::Init”: 函数不接受 3 个参数
这个错误该如何排除,谢谢各位大仙。 |
|