Quote: "
`The Brush remains the same, it goes with the camera and then when i want to place a cube with brushe's size it gives me the same size always even if i put 1 to the brush this is the code that creates the box after the brush
`Is something wrong?
make object box objm,object size x(48),object size y(48),object size z(48)"
I don't really understand what you've done. The code you've shown us makes the box object 48 have size 355x355x355. Where's the code that changes it's size?
Specifically, what does this phrase mean:
Quote: "even if i put 1 to the brush"
Do you mean when you use 1 instead of 355 when you create the brush? If not then tell us what you mean. We are not mind readers.
The following code works perfectly for me. Where do you change the brush size?
sync on : sync rate 60 : sync
autocam off
position camera 0, 0, -1000
point camera 0, 0, 0
` make the brush object
make object box 1, 355, 355, 355
position object 1, -355, 0, 0
` use the brush sizes to make a new object
make object box 2, object size x(1), object size y(1), object size z(1)
position object 2, 355, 0, 0
repeat
sync
until spacekey()
end