1
0
KF2-Dev-Scripts/UnrealEd/Classes/CurveEdPreset_Nothing.uc

28 lines
423 B
Ucode
Raw Permalink Normal View History

2020-12-13 15:01:13 +00:00
/**
* Copyright 1998-2013 Epic Games, Inc. All Rights Reserved.
*/
class CurveEdPreset_Nothing extends CurveEdPresetBase
native
editinlinenew
hidecategories(Object);
/** Virtual function to get the user-readable name for the curve */
function string GetDisplayName()
{
local string RetVal;
RetVal = "Do not preset";
return RetVal;
}
/** */
cpptext
{
}
/** */
defaultproperties
{
}