Overview Package Class Source Class tree Glossary
previous class      next class frames      no frames

U2.ScratchPad


00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
//=============================================================================
// ScratchPad.uc
// Created By: Mike Fox
// Created On: 8/01/00
// $Author: Aleiby $
// $Date: 12/19/01 9:16p $
// $Revision: 1 $
//=============================================================================

class ScratchPad extends Actor
	placeable;

/*-----------------------------------------------------------------------------
Can be placed in levels and used as a "global" scratchpad with property set/test
operations. e.g. scripted NPCs might each increment Int1 when they reach some
area and any NPC could determine the current value of Int1 and take appropriate
action.

Should be used sparingly. It is likely that in many cases, a better approach 
will be to create a specialized class (e.g. one that Triggers NPCs when event
X occurs).
-----------------------------------------------------------------------------*/

var() int	Int1, Int2, Int3, Int4, Int5, Int6, Int7, Int8, Int9;
var() bool	Bool1, Bool2, Bool3, Bool4, Bool5, Bool6, Bool7, Bool8, Bool9;

defaultproperties
{
     UseReticleOnEvents(0)="UseReticleText"
     UseReticleOnEvents(1)="UseReticleCorners"
     UseReticleOnEvents(2)="UseReticleTopBars"
     ProximityReticleOnEvents(0)="ProximityReticleCorners"
     ProximityReticleOnEvents(1)="ProximityReticleTopBars"
}

Overview Package Class Source Class tree Glossary
previous class      next class frames      no frames
Class file time: sk 3-1-2016 10:38:42.000 - Creation time: sk 3-1-2016 10:48:41.521 - Created with UnCodeX