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

  1. class InventoryAttachment extends Actor
  2.     native
  3.     nativereplication;
  4.  
  5. function InitFor(Inventory I)
  6. {
  7.     Instigator = I.Instigator;
  8. }
  9.         
  10. defaultproperties
  11. {
  12.     bOnlyDrawIfAttached=true
  13.     NetUpdateFrequency=10
  14.     DrawType=DT_Mesh
  15.     RemoteRole=ROLE_SimulatedProxy
  16.     bAcceptsProjectors=True
  17.     bUseLightingFromBase=True
  18.     bOnlyDirtyReplication=true
  19. }