Changeset 227 for osgVisual/trunk/src/core
- Timestamp:
- Feb 10, 2011, 12:51:47 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
osgVisual/trunk/src/core/visual_core.cpp
r226 r227 282 282 { 283 283 std::string name=reinterpret_cast<const char*>(modelNode->name); 284 if( cur_node->type == XML_ELEMENT_NODE && name == "model")284 if(modelNode->type == XML_ELEMENT_NODE && name == "model") 285 285 { 286 286 visual_object::createNodeFromXMLConfig(rootNode, modelNode); 287 287 } 288 if( cur_node->type == XML_ELEMENT_NODE && name == "trackmodel")288 if(modelNode->type == XML_ELEMENT_NODE && name == "trackmodel") 289 289 { 290 290 // Extract track-ID and track the model 291 xmlAttr *attr = cur_node->properties;291 xmlAttr *attr = modelNode->properties; 292 292 while ( attr ) 293 293 { 294 294 std::string attr_name=reinterpret_cast<const char*>(attr->name); 295 295 std::string attr_value=reinterpret_cast<const char*>(attr->children->content); 296 if( attr_name == "id" ) trackNode( util::strToInt(attr_value) ); 296 if( attr_name == "id" ) 297 trackNode( util::strToInt(attr_value) ); 297 298 attr = attr->next; 298 299 } … … 464 465 //testObj5->addUpdater( new object_updater(testObj5) ); 465 466 466 trackNode( testObj4 );467 //trackNode( testObj4 ); 467 468 468 469 // Load EDDF
Note: See TracChangeset
for help on using the changeset viewer.