Posted by Martin 62.4.151.247 using Mozilla/4.6 [en] (WinNT; I) on April 05, 2000 at 14:29:45:
In Reply to: How can I create tile animation for a board ? posted by Gaden on April 05, 2000 at 14:12:08:
First, create an item (with no graphics) called for example "none.itm" then Set it on the board
In the "item properties" you choose a "MultiTask program" to lauch, like this:
:loop
#Put("tilered.gph",10,5)
#Delay(1)
#Put("tileblue.gph",10,5)
#Delay(1)
#Put("tilegreen.gph",10,5)
#Delay(1)
#Put("tileyellow.gph",10,5)
#Branch(:loop)
You can edit this as you wish...
For a disco floor, try like this i.e.:
:loop
#Random(19,tilx!)
#Random(11,tily!)
#Put("tilered.gph",tilx!,tily!)
#Random(19,tilx!)
#Random(11,tily!)
#Put("tileblue.gph",tilx!,tily!)
#Random(19,tilx!)
#Random(11,tily!)
#Put("tilegreen.gph",tilx!,tily!)
#Random(19,tilx!)
#Random(11,tily!)
#Put("tileyellow.gph",tilx!,tily!)
#Branch(:loop)
But I'm sure there's many other ways...Just try and have fun!
-Martin