Skip to content
Snippets Groups Projects
Commit 80401b6b authored by Marco Biasini's avatar Marco Biasini
Browse files

remove broken property export

parent fe1c532f
No related branches found
No related tags found
No related merge requests found
...@@ -236,6 +236,7 @@ void (Entity::*set_rm2)(RenderMode::Type)=&Entity::SetRenderMode; ...@@ -236,6 +236,7 @@ void (Entity::*set_rm2)(RenderMode::Type)=&Entity::SetRenderMode;
void (Entity::*set_vis1)(const mol::EntityView&, bool)=&Entity::SetVisible; void (Entity::*set_vis1)(const mol::EntityView&, bool)=&Entity::SetVisible;
void (Entity::*set_vis2)(const String&, bool)=&Entity::SetVisible; void (Entity::*set_vis2)(const String&, bool)=&Entity::SetVisible;
RenderOptionsPtr ent_trace_opts(Entity* ent) RenderOptionsPtr ent_trace_opts(Entity* ent)
{ {
return ent->GetOptions(RenderMode::TRACE); return ent->GetOptions(RenderMode::TRACE);
...@@ -339,7 +340,6 @@ void export_Entity() ...@@ -339,7 +340,6 @@ void export_Entity()
.def("SetBlurFactors",&Entity::SetBlurFactors) .def("SetBlurFactors",&Entity::SetBlurFactors)
.def("SetBlur",&Entity::SetBlur) .def("SetBlur",&Entity::SetBlur)
.def("GetBoundingBox",&Entity::GetBoundingBox) .def("GetBoundingBox",&Entity::GetBoundingBox)
.add_property("bounding_box",&Entity::GetBoundingBox)
.def("SetSelection",&Entity::SetSelection) .def("SetSelection",&Entity::SetSelection)
.def("GetSelection",&Entity::GetSelection) .def("GetSelection",&Entity::GetSelection)
.add_property("selection", &Entity::GetSelection, .add_property("selection", &Entity::GetSelection,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment