add short alias for mutator

This commit is contained in:
2023-12-31 23:44:12 +03:00
parent fa461e2f99
commit 0206ae8a89
3 changed files with 50 additions and 49 deletions

47
TRB/Classes/Mut.uc Normal file
View File

@ -0,0 +1,47 @@
class Mut extends KFMutator
dependson(TRB);
var private TRB TRB;
public simulated function bool SafeDestroy()
{
return (bPendingDelete || bDeleteMe || Destroy());
}
public event PreBeginPlay()
{
Super.PreBeginPlay();
if (WorldInfo.NetMode == NM_Client) return;
foreach WorldInfo.DynamicActors(class'TRB', TRB)
{
break;
}
if (TRB == None)
{
TRB = WorldInfo.Spawn(class'TRB');
}
if (TRB == None)
{
`Log_Base("FATAL: Can't Spawn 'TRB'");
SafeDestroy();
}
}
public function AddMutator(Mutator M)
{
if (M == Self) return;
if (M.Class == Class)
Mut(M).SafeDestroy();
else
Super.AddMutator(M);
}
defaultproperties
{
}

View File

@ -1,47 +1 @@
class TRBMut extends KFMutator
dependson(TRB);
var private TRB TRB;
public simulated function bool SafeDestroy()
{
return (bPendingDelete || bDeleteMe || Destroy());
}
public event PreBeginPlay()
{
Super.PreBeginPlay();
if (WorldInfo.NetMode == NM_Client) return;
foreach WorldInfo.DynamicActors(class'TRB', TRB)
{
break;
}
if (TRB == None)
{
TRB = WorldInfo.Spawn(class'TRB');
}
if (TRB == None)
{
`Log_Base("FATAL: Can't Spawn 'TRB'");
SafeDestroy();
}
}
public function AddMutator(Mutator Mut)
{
if (Mut == Self) return;
if (Mut.Class == Class)
TRBMut(Mut).SafeDestroy();
else
Super.AddMutator(Mut);
}
defaultproperties
{
}
class TRBMut extends Mut; // backward compatibility