forked from blender/blender
Support multimaterials on one mesh #44
@ -244,7 +244,7 @@ pxr::SdfPath BlenderSceneDelegate::world_prim_id() const
|
|||||||
|
|
||||||
ObjectData *BlenderSceneDelegate::object_data(pxr::SdfPath const &id) const
|
ObjectData *BlenderSceneDelegate::object_data(pxr::SdfPath const &id) const
|
||||||
{
|
{
|
||||||
pxr::SdfPath p_id = (id.GetName().find("SM_", 0) == 0) ? id.GetParentPath() : id;
|
pxr::SdfPath p_id = (id.GetName().find("SM_") == 0) ? id.GetParentPath() : id;
|
||||||
auto it = objects_.find(p_id);
|
auto it = objects_.find(p_id);
|
||||||
if (it != objects_.end()) {
|
if (it != objects_.end()) {
|
||||||
return it->second.get();
|
return it->second.get();
|
||||||
|
Loading…
Reference in New Issue
Block a user