another fix for error in the view raycast template

This commit is contained in:
Campbell Barton 2012-07-01 13:57:32 +00:00
parent 1eae6b5fb5
commit f81c38ce2d

@ -25,12 +25,12 @@ def main(context, event, ray_max=10000.0):
if obj.type == 'MESH':
yield (obj, obj.matrix_world.copy())
if obj.dupli_type != 'NONE':
obj.dupli_list_create(scene)
for dob in obj.dupli_list:
obj_dupli = dob.object
if obj_dupli.type == 'MESH':
yield (obj_dupli, dob.matrix.copy())
if obj.dupli_type != 'NONE':
obj.dupli_list_create(scene)
for dob in obj.dupli_list:
obj_dupli = dob.object
if obj_dupli.type == 'MESH':
yield (obj_dupli, dob.matrix.copy())
obj.dupli_list_clear()