Exemple #1
0
void av::gua::LightNode::setEnableDiffuseShadingCB(const SFBool::SetValueEvent& event) { m_guaNode->data.enable_diffuse_shading() = event.getValue(); }
Exemple #2
0
void av::gua::LightNode::setEnableShadowsCB(const SFBool::SetValueEvent& event) { m_guaNode->data.enable_shadows() = event.getValue(); }
Exemple #3
0
void av::gua::LightNode::setEnableGodraysCB(const SFBool::SetValueEvent& event) { m_guaNode->data.enable_godrays() = event.getValue(); }
Exemple #4
0
void av::gua::TexturedQuadNode::setFlipYCB(const SFBool::SetValueEvent& event) { m_guaNode->data.flip_y() = event.getValue(); }
Exemple #5
0
void av::gua::LightNode::setEnableSpecularShadingCB(const SFBool::SetValueEvent& event) { m_guaNode->data.enable_specular_shading() = event.getValue(); }
void
av::gua::ResolvePassDescription::setEnableFogCB(const SFBool::SetValueEvent& event)
{
    m_guaResolvePassDescription->enable_fog(event.getValue());
}
void
av::gua::CollisionShape::setHasIdenticalShapeConstructorCB(const SFBool::SetValueEvent& event)
{
    m_guaShape->set_has_identical_shape_constructor(event.getValue());
}
Exemple #8
0
void
av::gua::CameraNode::setEnableStereoCB(const SFBool::SetValueEvent& event)
{
  m_guaNode->config.enable_stereo() = event.getValue();
}
Exemple #9
0
void
av::gua::CameraNode::setEnableFrustumCullingCB(const SFBool::SetValueEvent& event)
{
  m_guaNode->config.enable_frustum_culling() = event.getValue();
}
void
av::gua::PipelineDescription::setEnableABufferCB(const SFBool::SetValueEvent& event)
{
  m_guaPipelineDescription->set_enable_abuffer(event.getValue());
}
Exemple #11
0
void
av::gua::FixedConstraint::setLockRotationCB(const SFBool::SetValueEvent& event)
{
    m_guaConstraint->lock_rotation(event.getValue());
}
void
av::gua::ResolvePassDescription::setEnableScreenSpaceShadowCB(const SFBool::SetValueEvent& event)
{
    m_guaResolvePassDescription->screen_space_shadows(event.getValue());
}
void
av::gua::ResolvePassDescription::setDebugTilesCB(const SFBool::SetValueEvent& event)
{
    m_guaResolvePassDescription->debug_tiles(event.getValue());
}
void
av::gua::ResolvePassDescription::setEnableSSAOCB(const SFBool::SetValueEvent& event)
{
    m_guaResolvePassDescription->ssao_enable(event.getValue());
}
Exemple #15
0
void
av::gua::Constraint::setEnabledCB(const SFBool::SetValueEvent& event)
{
    m_guaConstraint->set_enabled(event.getValue());
}
void
av::gua::CollisionShape::setIsStaticShapeCB(const SFBool::SetValueEvent& event)
{
    m_guaShape->set_is_static_shape(event.getValue());
}
Exemple #17
0
void
av::gua::gui::GuiResourceNode::setInteractiveCB(const SFBool::SetValueEvent& event)
{
    m_guaGuiResource->set_interactive(event.getValue());
}
Exemple #18
0
/* virtual */ void
av::osg::AutoTransform::setAutoScaleToScreenCB(const SFBool::SetValueEvent& event)
{
  mOsgAutoTransform->setAutoScaleToScreen(event.getValue());
}