GetObjects not selecting VA Objects

Hi VisualArq Team,

I had previously attempted to write some of my own VA commands but had just discovered that for some reason GetObject() does not allow for the selection of VA objects.

This is the behavior that I am facing:

I am just trying to run a simple script of GetObject() using the native rhino python editor but this does not seem to be working as intended. Any idea what is going on here?

Thank you.

Hi @Type0_User_1,

I tried your script, and it works fine on a simple model created with just some walls and Rhino objects.

Here is the script I’m using:

import clr
import Rhino
import Rhino.Geometry as rg
import rhinoscriptsyntax as rs
import scriptcontext as sc

object = rs.GetObject("select an object") 

print object

Each time I pick an object (using point picking or window crossing), I get the object UUID printed in the command line.

Enric