查看: 1527|回复: 3

事件回调问题

[复制链接]

该用户从未签到

发表于 2010-1-25 13:51:14 | 显示全部楼层 |阅读模式
int main( int argc, char **argv )
{
osgViewer::Viewer viewer;
osg::Switch* switchForYin = new osg::Switch();
osg::Group* group = new osg::Group();
// switchForYin->addEventCallback();
switchForYin->setValue(0,true);
// group->addChild(runGroup->getGroup());
//group->addChild(switchForYin);

//显示模型
osg::MatrixTransform* position1 = new osg::MatrixTransform();
position1->setMatrix(osg::Matrix::scale(1,1,1));
osg::Node* crh = osgDB::readNodeFile("cow.osg");
position1->addChild(crh);
position1->getOrCreateStateSet()->setMode(GL_LIGHTING ,osg::StateAttribute::ON);

//group->addChild(position1);
switchForYin->addChild(position1);
//switchForYin->addEventCallback(new switchCallback(switchForYin));
switchForYin->addEventCallback(new groupCallback(position1));
group->addChild(switchForYin);
/*osgUtil::Optimizer optimzer;
optimzer.optimize(group);*/
viewer.setSceneData(group);
//viewer.getCamera()->setClearColor(osg::Vec4(1.0,1.0,1.0,0.0));

viewer.run();
return 0;
}

该用户从未签到

 楼主| 发表于 2010-1-25 13:52:26 | 显示全部楼层
请问上面代码中,switch节点的两个事件回调为什么 只有第一个能执行呢?
其中两个事件回调中的内容是互不影响的,都是键盘事件回调

该用户从未签到

发表于 2010-1-25 14:50:10 | 显示全部楼层
那要看您的事件回调的operator()中是否执行了traverse来指示继续遍历节点树,否则遍历将自动停止

该用户从未签到

 楼主| 发表于 2010-1-25 15:12:16 | 显示全部楼层
果真是这样,谢谢array.
您需要登录后才可以回帖 登录 | 注册

本版积分规则

OSG中国官方论坛-有您OSG在中国才更好

网站简介:osgChina是国内首个三维相关技术开源社区,旨在为国内更多的技术开发人员提供最前沿的技术资讯,为更多的三维从业者提供一个学习、交流的技术平台。

联系我们

  • 工作时间:09:00--18:00
  • 反馈邮箱:1315785073@qq.com
快速回复 返回顶部 返回列表