本文整理汇总了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(); }
示例2:
void av::gua::TexturedQuadNode::setFlipYCB(const SFBool::SetValueEvent& event) { m_guaNode->data.flip_y() = event.getValue(); }
示例3:
void
av::gua::ResolvePassDescription::setEnableFogCB(const SFBool::SetValueEvent& event)
{
m_guaResolvePassDescription->enable_fog(event.getValue());
}
示例4:
void
av::gua::CollisionShape::setHasIdenticalShapeConstructorCB(const SFBool::SetValueEvent& event)
{
m_guaShape->set_has_identical_shape_constructor(event.getValue());
}
示例5:
void
av::gua::CameraNode::setEnableStereoCB(const SFBool::SetValueEvent& event)
{
m_guaNode->config.enable_stereo() = event.getValue();
}
示例6:
void
av::gua::PipelineDescription::setEnableABufferCB(const SFBool::SetValueEvent& event)
{
m_guaPipelineDescription->set_enable_abuffer(event.getValue());
}
示例7:
void
av::gua::FixedConstraint::setLockRotationCB(const SFBool::SetValueEvent& event)
{
m_guaConstraint->lock_rotation(event.getValue());
}
示例8:
void
av::gua::Constraint::setEnabledCB(const SFBool::SetValueEvent& event)
{
m_guaConstraint->set_enabled(event.getValue());
}
示例9:
void
av::gua::gui::GuiResourceNode::setInteractiveCB(const SFBool::SetValueEvent& event)
{
m_guaGuiResource->set_interactive(event.getValue());
}
示例10:
/* virtual */ void
av::osg::AutoTransform::setAutoScaleToScreenCB(const SFBool::SetValueEvent& event)
{
mOsgAutoTransform->setAutoScaleToScreen(event.getValue());
}