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

UTGame.UTSeqCond_HasInventory


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
/**
 * Copyright 1998-2008 Epic Games, Inc. All Rights Reserved.
 */

/** activates output depending on whether the given Pawn has the specified inventory item */
class UTSeqCond_HasInventory extends SequenceCondition;

/** player to look for inventory on */
var Actor Target;
/** inventory item to check */
var() class<Inventory> RequiredInventory;
/** whether subclasses of the specified class count */
var() bool bAllowSubclass;
/** whether to check the driver Pawn if the player is in a vehicle */
var() bool bCheckVehicleDriver;

event Activated()
{
	local Pawn P;
	local Vehicle V;
	local bool bHasItem;

	P = GetPawn(Target);
	if (P != None)
	{
		bHasItem = (P.FindInventoryType(RequiredInventory, bAllowSubclass) != None);
		if (!bHasItem && bCheckVehicleDriver)
		{
			V = Vehicle(P);
			if (V != None && V.Driver != None)
			{
				bHasItem = (V.Driver.FindInventoryType(RequiredInventory, bAllowSubclass) != None);
			}
		}

		OutputLinks[bHasItem ? 0 : 1].bHasImpulse = true;
	}
}

defaultproperties
{
   OutputLinks(0)=(LinkDesc="Has Item")
   OutputLinks(1)=(LinkDesc="Doesn't Have Item")
   VariableLinks(0)=(ExpectedType=Class'Engine.SeqVar_Object',LinkDesc="Target",PropertyName="Target",MinVars=1,MaxVars=1)
   ObjName="Has Inventory"
   Name="Default__UTSeqCond_HasInventory"
   ObjectArchetype=SequenceCondition'Engine.Default__SequenceCondition'
}

Overview Package Class Source Class tree Glossary
previous class      next class frames      no frames
Class file time: tr 31-1-2018 17:18:48.000 - Creation time: sk 18-3-2018 10:01:24.951 - Created with UnCodeX