I'm trying to make a line by putting two coordinates of the triangles to the same one and switching it to wireframe mode. It works on each one seperatly. However, when I try to "fuse" 2 "lines" together by use of limbs, the second line wont appear.
Try this code
AUTOCAM OFF
MAKE OBJECT TRIANGLE 1,-5,5,0,-6,5,0,-5,-5,0
MAKE OBJECT TRIANGLE 2,5,5,0,6,5,0,5,-5,0
MAKE MESH FROM OBJECT 1,2
DELETE OBJECT 2
POSITION CAMERA 0,0,-10
WAIT KEY
ADD LIMB 1,1,1
SET OBJECT WIREFRAME 1,1
WAIT KEY
You can "fuse" two triangles but when you change the -6 and 6 to -5 and 5 in the make object triangle commands, you can only see one line.
Can anyone help me?