forked from blender/blender
Fix rendering of Car Demo scene #37
No reviewers
Labels
No Label
No Milestone
No Assignees
3 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: BogdanNagirniak/blender#37
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "Vasyl-Pidhirskyi/blender_bn:BLEN-399"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Purpose
Fix rendering of Car Demo scene.
Technical steps
Improved support for instancers type of EMPTY object.
Adjusted condition for
update_instancers
andavailable_objects
.@ -436,3 +436,2 @@
if (!ObjectData::is_supported(object)) {
continue;
if (ObjectData::is_supported(object)) {
This check is already in
update_objects()
, so here it can be just removed@ -548,3 +542,1 @@
if (!object_data(object_prim_id(object))) {
update_objects(object);
if (ObjectData::is_supported(object)) {
Same here, just remove this
if (...)
Tested - works good