10 lines
174 B
Ucode
10 lines
174 B
Ucode
class AnimNotify_Trigger extends AnimNotify_Scripted;
|
|
|
|
var() name EventName;
|
|
|
|
event Notify( Actor Owner )
|
|
{
|
|
Owner.TriggerEvent( EventName, Owner, Pawn(Owner) );
|
|
}
|
|
|