I mean that when I use this code:
load image "ptbin\fire.bmp",11
make particles 1,11,50,90
position particles 1,-1,5,5
color particles 1, 255, 128, 0
position camera 0,5,-10
I = 10
do
position particle emissions 1,-1,I,5
dec I
sync
If I = 0 then exit
loop
the particles doesn't come from -1,I,5 but much more far away.
But if I use this code:
load image "ptbin\fire.bmp",11
make particles 1,11,50,90
position particles 1,-1,5,5
color particles 1, 255, 128, 0
position camera 0,5,-10
I = 10
do
sync
loop
the particle source is the -1,5,5. Then I can't do a wake...