(Scene3D) Allow/Block model view's children hit-test events
[platform/core/uifw/dali-toolkit.git] / dali-scene3d / public-api / controls / model / model.cpp
index e315cb9..69029d9 100644 (file)
@@ -67,6 +67,16 @@ const Actor Model::GetModelRoot() const
   return GetImpl(*this).GetModelRoot();
 }
 
+void Model::SetChildrenSensitive(bool enable)
+{
+  GetImpl(*this).SetChildrenSensitive(enable);
+}
+
+bool Model::GetChildrenSensitive() const
+{
+  return GetImpl(*this).GetChildrenSensitive();
+}
+
 void Model::SetImageBasedLightSource(const std::string& diffuseUrl, const std::string& specularUrl, float scaleFactor)
 {
   GetImpl(*this).SetImageBasedLightSource(diffuseUrl, specularUrl, scaleFactor);