Migrate various thinkers to plain objects.

WIP: Gib models currently in progress.
WIP: IK re-rigging of Demolitionist in progress.
This commit is contained in:
Mari the Deer 2022-02-28 23:44:50 +01:00
commit a7eda2702a
22 changed files with 192 additions and 257 deletions

View file

@ -153,7 +153,13 @@ extend Class SWWMHandler
if ( swwm_notrack )
{
int n = trackers_cnt;
while ( trackers ) trackers.Destroy(); // wow that's simple, all in one line
while ( trackers )
{
let next = trackers.next;
trackers.Destroy(); // wow that's simple, all in one line
trackers = next;
}
trackers_cnt = 0;
Console.Printf("%d trackers removed.",n);
}
else
@ -717,5 +723,4 @@ extend Class SWWMHandler
}
return false;
}
}