Is that possibe to Hide Object in Active BaseDraw?
-
Hi everyone,
I'm trying to Hide the selected Objects in Active(selected) viewport, but still show in other viewport, is that possible?
I know theNBIT_EHIDE
, but it seems to be global , the object is hidden in all viewports.
I just want to hide it in active viewport. -
Hello @gheyret,
thank you for reaching out to us. No, that is not possible, at least not to my knowledge. What you could do, is hide the object and then draw it yourself in the viewports you want it to appear in with
BaseDraw.DrawObject
. But that would only be an approximation, and you might run into problems with z-ordering and/or draw passes.Cheers,
Ferdinand -
Hi @ferdinand,
Thanks for your reply.
I just want to make sure if it's possible.
And I'll try theBaseDraw.DrawObject
later.