Mortal Rifle fully implemented (oh my).

This commit is contained in:
Mari the Deer 2022-09-28 21:00:24 +02:00
commit e571fccc4d
16 changed files with 700 additions and 27 deletions

View file

@ -1466,6 +1466,13 @@ Class SWWMUtility
if ( a is 'YnykronLightningArc' ) return true;
if ( a is 'YnykronAltBeam' ) return true;
if ( a is 'MykradvoTendril' ) return true;
if ( a is 'MisterRailBeam' ) return true;
return false;
}
// is this a YBeam type? (real pitch is pitch-90, scale.y == length)
static play bool IsYBeam( Actor a )
{
if ( a is 'MisterRailBeam' ) return true;
return false;
}