Small std::cout fix
This commit is contained in:
parent
d6ff23d32f
commit
0304b926d7
@ -20,7 +20,7 @@ bool KeySwitchCameraManipulator::handle(const GUIEventAdapter& ea,GUIActionAdapt
|
|||||||
KeyManipMap::iterator it=_manips.find(ea.getKey());
|
KeyManipMap::iterator it=_manips.find(ea.getKey());
|
||||||
if(it != _manips.end()){
|
if(it != _manips.end()){
|
||||||
osg::notify(osg::INFO)<<"Switching to manipulator: "<<(*it).second.first<<std::endl;
|
osg::notify(osg::INFO)<<"Switching to manipulator: "<<(*it).second.first<<std::endl;
|
||||||
cout<<"***Switching to manipulator: "<<(*it).second.first<<std::endl;
|
std::cout<<"***Switching to manipulator: "<<(*it).second.first<<std::endl;
|
||||||
it->second.second->setNode(_current->getNode());
|
it->second.second->setNode(_current->getNode());
|
||||||
it->second.second->setCamera(_current->getCamera());
|
it->second.second->setCamera(_current->getCamera());
|
||||||
it->second.second->init(ea,aa);
|
it->second.second->init(ea,aa);
|
||||||
|
Loading…
Reference in New Issue
Block a user