27 lines
631 B
Ucode
27 lines
631 B
Ucode
/**
|
|
* Represents a set of actors based on Actor.Group vs GroupName.
|
|
*
|
|
* Copyright 1998-2013 Epic Games, Inc. All Rights Reserved.
|
|
*/
|
|
class SeqVar_Group extends SeqVar_Object
|
|
native(Sequence)
|
|
deprecated;
|
|
|
|
cpptext
|
|
{
|
|
virtual FString GetValueStr();
|
|
virtual UObject** GetObjectRef(INT Idx);
|
|
};
|
|
|
|
var() Name GroupName;
|
|
|
|
/** Has the list been cached? */
|
|
var transient bool bCachedList;
|
|
/** List of actors w/ matching Group, @note using Object simply for GetObjectRef(), typing isn't really important here */
|
|
var transient array<Object> Actors;
|
|
|
|
defaultproperties
|
|
{
|
|
ObjName="Group"
|
|
ObjCategory="Object"
|
|
} |