Class Summary |
MutUTPlusHitSounds |
MutUTPlusHitSounds
Creation date: 2010-12-22 17:48
Last change: $Id$
Copyright © 2010, Wormbo
Website: http://www.koehler-homepage.de/Wormbo/
Feel free to reuse this code. Send me a note if you found it helpful or want
to report bugs/provide improvements.
|
UTPlusEventForwarder |
Forwards a trigger/untrigger event via delegates. This class is practically the
same as the Jailbreak.JBProbeEvent actor, I just didn't feel like copy/pasting
it for "religious" reasons. ;-)
Creation date: 2010-06-11 00:39
Last change: $Id$
Copyright © 2010, Wormbo
Website: http://www.koehler-homepage.de/Wormbo/
Feel free to reuse this code. Send me a note if you found it helpful or want
to report bugs/provide improvements.
|
UTPlusHitSounds |
UTPlusHitSounds
Creation date: 2011-08-29 11:08
Last change: $Id$
Copyright © 2011, Wormbo
Website: http://www.koehler-homepage.de/Wormbo/
Feel free to reuse this code. Send me a note if you found it helpful or want
to report bugs/provide improvements.
|
UTPlusHitSoundTag |
UTPlusHitSoundTag
Creation date: 2010-06-03 13:57
Last change: $Id$
Copyright © 2010, Wormbo
Website: http://www.koehler-homepage.de/Wormbo/
Feel free to reuse this code. Send me a note if you found it helpful or want
to report bugs/provide improvements.
|
UTPlusSettings |
Client-side UTPlus settings.
Creation date: 2010-06-03 15:00
Last change: $Id$
Copyright © 2010, Wormbo
Website: http://www.koehler-homepage.de/Wormbo/
Feel free to reuse this code. Send me a note if you found it helpful or want
to report bugs/provide improvements.
|
UTPlusTag |
Abstract base class for information-holding actors that can be attached to
arbitrary other actors. Actors of the same subclass of UTPlusTag are linked as a
list and can be efficiently retrieved given the actor they are attached to.
Subclasses should expose the following public interface:
var UTPlusTagCustom nextTag
static function UTPlusTagCustom FindFor(KeeperClass Keeper)
static function UTPlusTagCustom SpawnFor(KeeperClass Keeper)
FindFor and SpawnFor can be implemented by means of calling the protected
functions InternalFindFor and InternalSpawnFor. Overwriting them in the
subclass gives it the opportunity to return a reference to a UTPlusTag instance
of that specific subclass and to restrict the class of actors it can be
attached to.
Internally, subclasses must overwrite the following protected functions
which take care of maintaining the linked list:
protected simulated function UTPlusTag InternalGetFirst()
protected simulated function InternalSetFirst(UTPlusTag TagFirst)
protected simulated function UTPlusTag InternalGetNext()
protected simulated function InternalSetNext(UTPlusTag TagNext)
InternalGetNext and InternalSetNext act as accessors for the nextTag
variable declared in the UTPlusTag subclass. InternalGetFirst and
InternalSetFirst access a centrally available reference to the first item
in the linked list. This may be anywhere, for instance in the globally
available instance of JBGameReplicationInfo.
Mixing UTPlusTag actors with inventory of any other kind is not advisable.
Copyright © 2002 Mychaeel
Creation date: 2010-06-03 11:49
Last change: $Id$
This class was originally created as "Jailbreak.JBTag" by Mychaeel for JB200x,
I (Wormbo) only renamed it to fit the UTPlus naming scheme. Please direct any
|