Posted: Sun Sep 11, 2005 2:52 pm
Nothing wrong with that, but there are some reasonable shark sprites in Duke Nukem.
And what's wrong with True Space? For making doom sprites, it's more than enough.Kristus wrote:People still use truespace?
Code: Select all
int fish[3] = {1, 2, 3}; //Each fish has its own tid
int i = 0; //index counter
#define water_height -128 * 65536 //water limit, probably a good idea to be slightly lower than the actual fake floor, especially if there are terrain splashes
script 1 (void)
{
i=0;
while (i < 3)
{
if (getactorz(fish[i++]) >= water_height)
{
thrustthingz(fish[i - 1], 160, 1, 0);
}
}
delay(15);
i = 0;
while (i < 3)
{
if (thingcount(t_none, fish[i++]) > 0)
{
restart;
}
}
}