home *** CD-ROM | disk | FTP | other *** search
/ Game Level Design / GLDesign.bin / Software / UnrealEngine2Runtime / UE2Runtime-22262001_Demo.exe / Engine / Classes / AnimNotify_DestroyEffect.uc < prev    next >
Text File  |  2003-06-23  |  275b  |  16 lines

  1. class AnimNotify_DestroyEffect extends AnimNotify
  2.     native;
  3.  
  4. var() name DestroyTag;
  5. var() bool bExpireParticles;
  6.  
  7. cpptext
  8. {
  9.     // AnimNotify interface.
  10.     virtual void Notify( UMeshInstance *Instance, AActor *Owner );
  11. }
  12.  
  13. defaultproperties
  14. {
  15.     bExpireParticles=True
  16. }