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

27 lines
672 B
Ucode
Raw Normal View History

2020-12-13 15:01:13 +00:00
/**
*
* Copyright 1998-2013 Epic Games, Inc. All Rights Reserved.
*/
//=============================================================================
// GeomModifier_Edit: Maniupalating selected objects with the widget
//=============================================================================
class GeomModifier_Edit
extends GeomModifier
native;
cpptext
{
/**
* @return TRUE if the delta was handled by this editor mode tool.
*/
virtual UBOOL InputDelta(struct FEditorLevelViewportClient* InViewportClient,FViewport* InViewport,FVector& InDrag,FRotator& InRot,FVector& InScale);
}
defaultproperties
{
Description="Edit"
}