Sigil 2 (v1.0) and Eviternity 2 (RC5) support.
+ Invinciball activation now voiced by Demo (thanks, Vyolette). + Retooled exit line merging (should fix those pesky duplicate exit markers). Note: Oneliners for the Eviternity 2 final boss are not voiced yet.
This commit is contained in:
parent
9a252b72fe
commit
cbb1b2a8cb
36 changed files with 1177 additions and 165 deletions
|
|
@ -676,4 +676,15 @@ extend Class SWWMUtility
|
|||
// is the point behind both lines?
|
||||
return (Level.PointOnLineSide(p,a) && Level.PointOnLineSide(p,b));
|
||||
}
|
||||
|
||||
static bool SameSpecial( Line a, Line b )
|
||||
{
|
||||
if ( a.special != b.special ) return false;
|
||||
for ( int i=0; i<5; i++ )
|
||||
{
|
||||
if ( a.args[i] != b.args[i] )
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue