Beispiel #1
0
void
av::gua::gui::GuiResourceNode::getInteractiveCB(const SFBool::GetValueEvent& event)
{
    *(event.getValuePtr()) = m_guaGuiResource->is_interactive();
}
Beispiel #2
0
void av::gua::LightNode::getEnableDiffuseShadingCB(const SFBool::GetValueEvent& event) { *(event.getValuePtr()) = m_guaNode->data.enable_diffuse_shading(); }
Beispiel #3
0
void
av::gua::Constraint::getEnabledCB(const SFBool::GetValueEvent& event)
{
    *(event.getValuePtr()) = m_guaConstraint->enabled();
}
Beispiel #4
0
void av::gua::TexturedQuadNode::getFlipYCB(const SFBool::GetValueEvent& event) { *(event.getValuePtr()) = m_guaNode->data.flip_y(); }
Beispiel #5
0
void av::gua::LightNode::getEnableGodraysCB(const SFBool::GetValueEvent& event) { *(event.getValuePtr()) = m_guaNode->data.enable_godrays(); }
void
av::gua::CollisionShape::getIsStaticShapeCB(const SFBool::GetValueEvent& event)
{
    *(event.getValuePtr()) = m_guaShape->is_static_shape();
}
void
av::gua::CollisionShape::getHasIdenticalShapeConstructorCB(const SFBool::GetValueEvent& event)
{
    *(event.getValuePtr()) = m_guaShape->has_identical_shape_constructor();
}
Beispiel #8
0
void
av::gua::CameraNode::getEnableStereoCB(const SFBool::GetValueEvent& event)
{
  *(event.getValuePtr()) = m_guaNode->config.enable_stereo();
}
Beispiel #9
0
void
av::gua::CameraNode::getEnableFrustumCullingCB(const SFBool::GetValueEvent& event)
{
  *(event.getValuePtr()) = m_guaNode->config.enable_frustum_culling();
}
void
av::gua::PipelineDescription::getEnableABufferCB(const SFBool::GetValueEvent& event)
{
  *(event.getValuePtr()) = m_guaPipelineDescription->get_enable_abuffer();
}
Beispiel #11
0
void
av::gua::FixedConstraint::getLockTranslationCB(const SFBool::GetValueEvent& event)
{
    *(event.getValuePtr()) = m_guaConstraint->is_translation_locked();
}
Beispiel #12
0
void
av::gua::ResolvePassDescription::getEnableScreenSpaceShadowCB(const SFBool::GetValueEvent& event)
{
    *(event.getValuePtr()) = m_guaResolvePassDescription->screen_space_shadows();
}
Beispiel #13
0
void
av::gua::ResolvePassDescription::getDebugTilesCB(const SFBool::GetValueEvent& event)
{
    *(event.getValuePtr()) = m_guaResolvePassDescription->debug_tiles();
}
Beispiel #14
0
void
av::gua::ResolvePassDescription::getEnableSSAOCB(const SFBool::GetValueEvent& event)
{
    *(event.getValuePtr()) = m_guaResolvePassDescription->ssao_enable();
}
Beispiel #15
0
void
av::gua::ResolvePassDescription::getEnableFogCB(const SFBool::GetValueEvent& event)
{
    *(event.getValuePtr()) = m_guaResolvePassDescription->enable_fog();
}
Beispiel #16
0
/* virtual */ void
av::osg::AutoTransform::getAutoScaleToScreenCB(const SFBool::GetValueEvent& event)
{
  *(event.getValuePtr()) = mOsgAutoTransform->getAutoScaleToScreen();
}