Flashlight/Searchlight implemented.

Proper handling of charge redistribution on multi-copy items (fixes infinitely replenishable charge exploit).
More preparation code for other items.
This commit is contained in:
Marisa the Magician 2019-09-05 16:22:17 +02:00
commit b12c4a4112
17 changed files with 270 additions and 24 deletions

View file

@ -49,6 +49,22 @@ Class BigAmmo3 : BigAmmo
}
}
Class BigBlast : Actor
{
}
Class HitListEntry
{
Actor hitactor;
Vector3 hitlocation, x;
}
Class BigTracer : LineTracer
{
Array<HitListEntry> hitlist;
double penetration; // please don't laugh
}
Class BigGun : UnrealWeapon
{
Default