You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
TTP# 279062 - ROCKET: TASK: PUNTABLE: Viewports: "Drag to Attach" feature Moved FEdModePicker out of the Private section of the PropertyEditor module, and into its own module so that it can be shared between the PropertyEditor and LevelEditor modules. Also renamed it to FEdModeActorPicker. Added a way to filter FEdModeActorPicker by checking the actor directly (this complements the class type check it already had). Added an actor picker button next to the scene outliner in the "Attach To" menu on actors. This is also mapped to the Alt+A command. Built and tested in unity and non-unity. ReviewedBy Thomas.Sarkanen, Max.Preussner [CL 2060928 by Jamie Dale in Main branch]
23 lines
429 B
C#
23 lines
429 B
C#
// Copyright 1998-2014 Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
public class ActorPickerMode : ModuleRules
|
|
{
|
|
public ActorPickerMode(TargetInfo Target)
|
|
{
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[] {
|
|
"Core",
|
|
"CoreUObject",
|
|
"Engine",
|
|
"InputCore",
|
|
"Slate",
|
|
"SlateCore",
|
|
"EditorStyle",
|
|
"UnrealEd",
|
|
}
|
|
);
|
|
}
|
|
}
|