void av::gua::gui::GuiResourceNode::getInteractiveCB(const SFBool::GetValueEvent& event) { *(event.getValuePtr()) = m_guaGuiResource->is_interactive(); }
void av::gua::LightNode::getEnableDiffuseShadingCB(const SFBool::GetValueEvent& event) { *(event.getValuePtr()) = m_guaNode->data.enable_diffuse_shading(); }
void av::gua::Constraint::getEnabledCB(const SFBool::GetValueEvent& event) { *(event.getValuePtr()) = m_guaConstraint->enabled(); }
void av::gua::TexturedQuadNode::getFlipYCB(const SFBool::GetValueEvent& event) { *(event.getValuePtr()) = m_guaNode->data.flip_y(); }
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(); }
void av::gua::CameraNode::getEnableStereoCB(const SFBool::GetValueEvent& event) { *(event.getValuePtr()) = m_guaNode->config.enable_stereo(); }
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(); }
void av::gua::FixedConstraint::getLockTranslationCB(const SFBool::GetValueEvent& event) { *(event.getValuePtr()) = m_guaConstraint->is_translation_locked(); }
void av::gua::ResolvePassDescription::getEnableScreenSpaceShadowCB(const SFBool::GetValueEvent& event) { *(event.getValuePtr()) = m_guaResolvePassDescription->screen_space_shadows(); }
void av::gua::ResolvePassDescription::getDebugTilesCB(const SFBool::GetValueEvent& event) { *(event.getValuePtr()) = m_guaResolvePassDescription->debug_tiles(); }
void av::gua::ResolvePassDescription::getEnableSSAOCB(const SFBool::GetValueEvent& event) { *(event.getValuePtr()) = m_guaResolvePassDescription->ssao_enable(); }
void av::gua::ResolvePassDescription::getEnableFogCB(const SFBool::GetValueEvent& event) { *(event.getValuePtr()) = m_guaResolvePassDescription->enable_fog(); }
/* virtual */ void av::osg::AutoTransform::getAutoScaleToScreenCB(const SFBool::GetValueEvent& event) { *(event.getValuePtr()) = mOsgAutoTransform->getAutoScaleToScreen(); }