2009-12-13 06:36 PM - last edited on 2023-05-24 11:55 AM by Rubia Torres
2009-12-14 06:48 AM
OP_DIR = "Right" PARAMETERS OP_DIR = OP_DIRDoes this make any difference for you?
2009-12-14 09:55 PM
2009-12-14 11:23 PM
2009-12-14 11:32 PM
2009-12-15 12:19 AM
The SYMB_MIRRORED global is only recognized in the 2D script.Best regards, Juha
2009-12-15 12:29 AM
The SYMB_MIRRORED global is only recognized in the 2D script.I put: IF SYMB_MIRRORED THEN END in the master script and it seemed to work..nothing but an empty hole in the wall. So I tried this in the master script:
2009-12-15 12:30 AM
!--Master or value script IF OP_DIR="Fixed" THEN END IF SYMB_MIRRORED THEN OP_DIR = "Right" ELSE OP_DIR = "Left" ENDIF PARAMETERS OP_DIR = OP_DIR !--3D script IF OP_DIR="Left" THEN ADDX A-7.5" MULX -1 ENDIF ADDZ .25" LIN_ 0, 0, 0, A-7.5", (B-7.5")/2, 0 LIN_ A-7.5", (B-7.5")/2, 0, 0, B-7.5", 0 DEL (OP_DIR="Left")*2 + 1
2009-12-15 01:18 AM
2009-12-16 12:24 AM