.def("attribute_count",static_cast<UnsignedInt(Trade::MeshData::*)(Int)const>(&Trade::MeshData::attributeCount),"Attribute array count for given morph target",
/** @todo direct access to MeshAttributeData, once making custom
MeshDataisdesired*/
.def("has_attribute",&Trade::MeshData::hasAttribute,"Whether the mesh has given attribute",py::arg("name"),
@ -969,17 +964,22 @@ void trade(py::module_& m) {
py::kw_only{},/* new in pybind11 2.6 */
#endif
py::arg("morph_target_id")=-1)
.def("attribute_count",static_cast<UnsignedInt(Trade::MeshData::*)(Trade::MeshAttribute,Int)const>(&Trade::MeshData::attributeCount),"Count of given named attribute",py::arg("name"),
.def("attribute_count",static_cast<UnsignedInt(Trade::MeshData::*)(Trade::MeshAttribute,Int)const>(&Trade::MeshData::attributeCount),"Count of given named attribute",py::arg("name"),
.def("attribute_count",static_cast<UnsignedInt(Trade::MeshData::*)(Int)const>(&Trade::MeshData::attributeCount),"Attribute array count for given morph target",