So having looked through the provided command set, there doesn't seem to be a command to allow the resizing of an object, rather than just rescaling.
So I tried to write code which would take the current size of an object, store it in a variable, increase it, then delete the object and remake it using the variable.
This doesn't work:
autocam off
b = 1
position camera 0,0,-100
make object box 1,10,10,10
do
nx = object size x (1) + b
wait 50
delete object 1
wait 50
make object box 1,nx,10,10
wait 50
loop
..however when you change:
to:
..it works! What is going on with that? Why can't it increase the size of the box by a value of 1, but it can using 2?
Thanks as always in advance,
schnide