forked from blender/blender
BLEN-365: Improve creation algorithm of PreviewEngine #21
@ -437,11 +437,11 @@ pxr::VtValue BlenderSceneDelegate::GetLightParamValue(pxr::SdfPath const &id,
|
||||
void BlenderSceneDelegate::clear()
|
||||
{
|
||||
for (auto it = materials.begin(); it != materials.end(); ++it) {
|
||||
DagerD marked this conversation as resolved
Outdated
Bogdan Nagirniak
commented
Outdated
Review
```
for (auto &it : materials) {
it.second->remove();
}
```
|
||||
it->second->remove_prim();
|
||||
it->second->remove();
|
||||
}
|
||||
|
||||
for (auto it = objects.begin(); it != objects.end(); ++it) {
|
||||
it->second->remove_prim();
|
||||
it->second->remove();
|
||||
}
|
||||
|
||||
materials.clear();
|
||||
|
Loading…
Reference in New Issue
Block a user