Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions python/bindings/src/spark_dsg_bindings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -368,6 +368,7 @@ PYBIND11_MODULE(_dsg_bindings, module) {
"ObjectNodeAttributes")
.def(py::init<>())
.def_readwrite("registered", &ObjectNodeAttributes::registered)
.def_readonly("mesh_connections", &KhronosObjectAttributes::mesh_connections)
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
.def_readonly("mesh_connections", &KhronosObjectAttributes::mesh_connections)
.def_readonly("mesh_connections", &ObjectAttributes::mesh_connections)

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oh 🤦 sorry this is a careless mistake on my part

.def_property(
"world_R_object",
[](const ObjectNodeAttributes& attrs) {
Expand Down