ExplodeBlockInstance() Bug

@dale @stevebaer
When using ExplodeBlockInstance() on blocks from a referenced worksession file, I am left with an unmovable, undeletable copy of the exploded geometry. Please see video below.

import rhinoscriptsyntax as rs

o = rs.GetObject()
if o:
    rs.ExplodeBlockInstance(o)

Hi @silvano,

Does this help?

import rhinoscriptsyntax as rs

o = rs.GetObject()
if o and not rs.IsObjectReference(o):
    rs.ExplodeBlockInstance(o)

– Dale

Hi @dale
Thanks for your answer. It does not solve my problem. I must explode the referenced blocks to get to the geometry inside them.

Silvan