1
0
KF2-Dev-Scripts/GFxUI/Classes/GFxAction_SetVariable.uc

38 lines
1.2 KiB
Ucode
Raw Normal View History

2020-12-13 15:01:13 +00:00
/**********************************************************************
Copyright : (c) 2006-2007 Scaleform Corp. All Rights Reserved.
Portions of the integration code is from Epic Games as identified by Perforce annotations.
Copyright 2010 Epic Games, Inc. All rights reserved.
Licensees may use this file in accordance with the valid Scaleform
Commercial License Agreement provided with the software.
This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR ANY PURPOSE.
**********************************************************************/
class GFxAction_SetVariable extends SequenceAction
native(UISequence)
dependson(GFxMoviePlayer);
var GFxMoviePlayer Movie;
var() string Variable;
cpptext
{
virtual void Activated();
}
event bool IsValidLevelSequenceObject() { return true; }
DefaultProperties
{
ObjName="GFx SetVariable"
ObjCategory="GFx UI"
VariableLinks.Empty
VariableLinks(0)=(ExpectedType=class'SequenceVariable',LinkDesc="Value",bWriteable=false)
VariableLinks(1)=(ExpectedType=class'SeqVar_Object',LinkDesc="Movie Player",bWriteable=false)
}