Changeset 10341 for OpenSceneGraph/trunk/src/osg/ProxyNode.cpp
- Timestamp:
- 06/12/09 12:08:15 (4 years ago)
- Files:
-
- 1 modified
-
OpenSceneGraph/trunk/src/osg/ProxyNode.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
OpenSceneGraph/trunk/src/osg/ProxyNode.cpp
r8325 r10341 28 28 Group(proxynode,copyop), 29 29 _filenameList(proxynode._filenameList), 30 _databaseOptions(proxynode._databaseOptions), 31 _databasePath(proxynode._databasePath), 30 32 _loadingExtReference(proxynode._loadingExtReference), 31 33 _centerMode(proxynode._centerMode), … … 58 60 { 59 61 if (nv.getDatabaseRequestHandler() && _filenameList.size()>_children.size() && 60 nv.getVisitorType()==NodeVisitor::CULL_VISITOR &&61 62 _loadingExtReference!=NO_AUTOMATIC_LOADING) 62 63 { 63 64 for(unsigned int i=_children.size(); i<_filenameList.size(); ++i) 64 65 { 65 nv.getDatabaseRequestHandler()->requestNodeFile(_databasePath+_filenameList[i].first, this, 1.0f, nv.getFrameStamp(), _filenameList[i].second );66 nv.getDatabaseRequestHandler()->requestNodeFile(_databasePath+_filenameList[i].first, this, 1.0f, nv.getFrameStamp(), _filenameList[i].second, _databaseOptions.get()); 66 67 } 67 68 }
