当前位置: 首页>>代码示例>>C++>>正文


C++ SetValueEvent::getValue方法代码示例

本文整理汇总了C++中sfbool::SetValueEvent::getValue方法的典型用法代码示例。如果您正苦于以下问题:C++ SetValueEvent::getValue方法的具体用法?C++ SetValueEvent::getValue怎么用?C++ SetValueEvent::getValue使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在sfbool::SetValueEvent的用法示例。


在下文中一共展示了SetValueEvent::getValue方法的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。

示例1:

void av::gua::LightNode::setEnableDiffuseShadingCB(const SFBool::SetValueEvent& event) { m_guaNode->data.enable_diffuse_shading() = event.getValue(); }
开发者ID:vrsys,项目名称:avango,代码行数:1,代码来源:LightNode.cpp

示例2:

void av::gua::TexturedQuadNode::setFlipYCB(const SFBool::SetValueEvent& event) { m_guaNode->data.flip_y() = event.getValue(); }
开发者ID:vrsys,项目名称:avango,代码行数:1,代码来源:TexturedQuadNode.cpp

示例3:

void
av::gua::ResolvePassDescription::setEnableFogCB(const SFBool::SetValueEvent& event)
{
    m_guaResolvePassDescription->enable_fog(event.getValue());
}
开发者ID:vrsys,项目名称:avango,代码行数:5,代码来源:ResolvePassDescription.cpp

示例4:

void
av::gua::CollisionShape::setHasIdenticalShapeConstructorCB(const SFBool::SetValueEvent& event)
{
    m_guaShape->set_has_identical_shape_constructor(event.getValue());
}
开发者ID:AnimationInVR,项目名称:avango,代码行数:5,代码来源:CollisionShape.cpp

示例5:

void
av::gua::CameraNode::setEnableStereoCB(const SFBool::SetValueEvent& event)
{
  m_guaNode->config.enable_stereo() = event.getValue();
}
开发者ID:DreadNoize,项目名称:avango,代码行数:5,代码来源:CameraNode.cpp

示例6:

void
av::gua::PipelineDescription::setEnableABufferCB(const SFBool::SetValueEvent& event)
{
  m_guaPipelineDescription->set_enable_abuffer(event.getValue());
}
开发者ID:flair2005,项目名称:avango,代码行数:5,代码来源:PipelineDescription.cpp

示例7:

void
av::gua::FixedConstraint::setLockRotationCB(const SFBool::SetValueEvent& event)
{
    m_guaConstraint->lock_rotation(event.getValue());
}
开发者ID:DreadNoize,项目名称:avango,代码行数:5,代码来源:FixedConstraint.cpp

示例8:

void
av::gua::Constraint::setEnabledCB(const SFBool::SetValueEvent& event)
{
    m_guaConstraint->set_enabled(event.getValue());
}
开发者ID:DreadNoize,项目名称:avango,代码行数:5,代码来源:Constraint.cpp

示例9:

void
av::gua::gui::GuiResourceNode::setInteractiveCB(const SFBool::SetValueEvent& event)
{
    m_guaGuiResource->set_interactive(event.getValue());
}
开发者ID:flair2005,项目名称:avango,代码行数:5,代码来源:GuiResourceNode.cpp

示例10:

/* virtual */ void
av::osg::AutoTransform::setAutoScaleToScreenCB(const SFBool::SetValueEvent& event)
{
  mOsgAutoTransform->setAutoScaleToScreen(event.getValue());
}
开发者ID:4og,项目名称:avango,代码行数:5,代码来源:AutoTransform.cpp


注:本文中的sfbool::SetValueEvent::getValue方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。