sync on:sync rate 20
make object cube 1,100
make object cube 2,50
position object 2,0,120,0
glue object to limb 2,1,0
`object 2 is glued to object 1 so it should
`now have the same world xyz coords...
do
if rightkey() then x= x+1
if leftkey() then x=x-1
position camera 0,-200,-500
position object 1,x,-200,z
sync
set cursor 0,0
print "cursor keys right/left"
print "Bottom box: object position x(1): " ; object position x(1)
print "Top Box: object position x(2):" ; object position x(2)
print "WTF?"
print "Why is object 2's x always 0???"
loop