Overview | Package | Class | Source | Class tree | Glossary | UnrealScript Documentation |
previous class next class | frames no frames |
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 |
/** * Copyright 1998-2008 Epic Games, Inc. All Rights Reserved. */ class PotentialClimbWatcher extends Info native; simulated event Tick(float DeltaTime) { local rotator PawnRot; local LadderVolume L; local bool bFound; if ( (Owner == None) || Owner.bDeleteMe || !Pawn(Owner).CanGrabLadder() ) { destroy(); return; } PawnRot = Owner.Rotation; PawnRot.Pitch = 0; ForEach Owner.TouchingActors(class'LadderVolume', L) if ( L.Encompasses(Owner) ) { if ( (vector(PawnRot) Dot L.LookDir) > 0.9 ) { Pawn(Owner).ClimbLadder(L); destroy(); return; } else bFound = true; } if ( !bFound ) destroy(); } defaultproperties { Begin Object Class=SpriteComponent Name=Sprite ObjName=Sprite Archetype=SpriteComponent'Engine.Default__Info:Sprite' ObjectArchetype=SpriteComponent'Engine.Default__Info:Sprite' End Object Components(0)=Sprite CollisionType=COLLIDE_CustomDefault Name="Default__PotentialClimbWatcher" ObjectArchetype=Info'Engine.Default__Info' } |
Overview | Package | Class | Source | Class tree | Glossary | UnrealScript Documentation |
previous class next class | frames no frames |