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