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

Legend.CollisionProxy


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
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050
00051
00052
00053
00054
00055
00056
00057
00058
00059
00060
00061
00062
00063
00064
00065
00066
00067
00068
00069
00070
//=============================================================================
// CollisionProxy.uc
// $Author: Mfox $
// $Date: 4/30/02 12:22p $
// $Revision: 3 $
//=============================================================================

class CollisionProxy extends LegendActorComponent;

//-----------------------------------------------------------------------------

var Actor TouchTarget;

//-----------------------------------------------------------------------------

function CP_SetCollisionSize( float NewCollisionRadius, float NewCollisionHeight )
{
	SetCollisionSize( NewCollisionRadius, NewCollisionHeight );
}

//-----------------------------------------------------------------------------

function CP_SetCollision( optional bool bNewColActors, optional bool bNewBlockActors, optional bool bNewBlockPlayers )
{
	SetCollision( bNewColActors, bNewBlockActors, bNewBlockPlayers );
}

//-----------------------------------------------------------------------------

function CP_SetLocation( vector NewLocation )
{
	SetLocation( NewLocation );
}

//-----------------------------------------------------------------------------

function CP_SetTouchTarget( Actor NewTouchTarget )
{
	TouchTarget = NewTouchTarget;
}

//-----------------------------------------------------------------------------

event Touch( Actor Other )
{
	if( TouchTarget != None )
		TouchTarget.Touch( Other );
}

//-----------------------------------------------------------------------------

event UnTouch( Actor Other )
{
	if( TouchTarget != None )
		TouchTarget.UnTouch( Other );
}

//-----------------------------------------------------------------------------

defaultproperties
{
	CollisionRadius=1.000000
	CollisionHeight=1.000000
     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:40.000 - Creation time: sk 3-1-2016 10:48:37.734 - Created with UnCodeX