I have a serious problem with imported .3ds files into archicad. I read some topics about adding PROJECT2{3} command to the 2D script, although i'm ZERO in gld scripting, i managed to get the plan view cut lines of the objects but i still could not add the cut fill properties and the uncut lines properties.
i really need some prof help here.
for the record the 2d script is like
2d script (in the beginning)
dummyvar = GLOB_CSTORY_ELEV
project2 3,270,2
! ==============================================================================
n= REQUEST ("Story", "", currentindex, currentstory_name)
pos=GLOB_ELEVATION
! ==============================================================================
and the 3d script is like:
3d script (in the beginning)
if GLOB_CONTEXT = 2 then
add 0,0,GLOB_CUTPLANES_INFO[1] + GLOB_CSTORY_ELEV - GLOB_HSTORY_ELEV
cutplane
del 1
endif
IF AC3D_SHOW3D THEN
(IN THE END)
IF GLOB_CONTEXT=2 THEN
CUTEND
ENDIF
END