- Timestamp:
- 03/19/10 11:19:41 (3 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
OpenSceneGraph/trunk/src/osgPlugins/fbx/ReaderWriterFBX.cpp
r11251 r11252 1 1 #include <sstream> 2 2 #include <memory> 3 #include <cassert>4 3 5 4 #include <osg/Notify> … … 158 157 else 159 158 { 160 assert(0);159 osg::notify(osg::WARN) << "No vertex influences found for \"" << osgBone.getName() << "\"" << std::endl; 161 160 } 162 161 } … … 165 164 else 166 165 { 167 assert(0); 166 osg::notify(osg::WARN) << "No bone found for \"" << fbxBone->GetName() << "\"" << std::endl; 167 ++it; 168 168 } 169 169 }
