delkovebay 发表于 2022-7-5 18:32:01

[LISP] Transparency greater th

Hi to all.
My trouble is that I want to make invisible some object (e.g spline), but with opportunity to click on it by mouse to change it and etc.
My solution is like this
 
      (vla-put-entitytransparency obj LEVEL)
 
But max value of"LEVEL" is only 90..
 
 
How can I get around it?
Or there are another ways?
 
 
Thanks.

rkmcswain 发表于 2022-7-5 19:42:21

 
 
If you make an object invisible, how will you click on it later?
 
Object do have a visible property. Change that to false to make them invisible. But the end user won't be able to select them afterwards. You'll have to restore the visibility some other way.
 
The 90 limitation you see is simply the limitation of that property. No way around.
 
Oops, nevermind.
For other readers, see: http://www.theswamp.org/index.php?topic=50238.0
页: [1]
查看完整版本: [LISP] Transparency greater th