Libraries & objects
About Archicad and BIMcloud libraries, their management and migration, objects and other library parts, etc.

How to show object 2D plane preview in the scheme?

Anonymous
Not applicable
hello everyone!
This is a GDL object that I created, I hope objects on the scheme no pointer.Is there any way to do it?

test.jpg
2 REPLIES 2
Barry Kelly
Moderator
In your objects script there will be a part that creates the leader.
You need to contain this in an if then statement that looks for the view type and stops it being drawn.
Something like...
if GLOB_VIEW_TYPE <> 9 then
leader scrip here ...
endif
Barry.
One of the forum moderators.
Versions 6.5 to 27
i7-10700 @ 2.9Ghz, 32GB ram, GeForce RTX 2060 (6GB), Windows 10
Lenovo Thinkpad - i7-1270P 2.20 GHz, 32GB RAM, Nvidia T550, Windows 11
Anonymous
Not applicable
Barry wrote:
In your objects script there will be a part that creates the leader.
You need to contain this in an if then statement that looks for the view type and stops it being drawn.
Something like...
if GLOB_VIEW_TYPE <> 9 then
leader scrip here ...
endif
Barry.
Thank you very much, I succeeded. Cheers