home *** CD-ROM | disk | FTP | other *** search
- //==========================================================
- // StandUpTrigger.
- //==========================================================
- class StandUpTrigger extends Trigger placeable;
- //#1 Declare a member variable
- // so that it appears in the properties dialog
- var (Message) string StandUpMessage;
- function PostBeginPlay(){
- Super.PostBeginPlay();
- //#2
- // Assign the value to the parameter
- Message = StandUpMessage;
- }
-