You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
Settings specific to Anim, Blueprint and Material Editor should probably be broken out into their own settings classes in the respective modules at some point. It feels a little strange that the GraphEditor needs to be aware of specific pin and node title types. At this time I did not want to refactor the existing graph editors though, and since many of the properties are currently being shared, pulling these settings out of UEditorUserSettings is at least a good first step. In the future I would like to see settings sections for specific graph based editors instead of having a generic 'Graph Editor' section that is shared by some or all editors. I exposed various color settings in the UI as many users seem to be quite excited about customizing their Editor. If you think that some settings should be added or removed, please feel free to make any desired changes or let me know. Thanks! #CodeReview: nick.whiting [CL 2079703 by Max Preussner in Main branch]
25 lines
514 B
C
25 lines
514 B
C
// Copyright 1998-2014 Epic Games, Inc. All Rights Reserved.
|
|
|
|
|
|
#ifndef __GraphEditorCommon_h__
|
|
#define __GraphEditorCommon_h__
|
|
|
|
#include "UnrealEd.h"
|
|
#include "GraphEditor.h"
|
|
|
|
#include "Slate.h"
|
|
|
|
#include "GraphEditorSettings.h"
|
|
#include "SNodePanel.h"
|
|
#include "SGraphPanel.h"
|
|
#include "SGraphNode.h"
|
|
#include "SGraphPin.h"
|
|
#include "BlueprintUtilities.h"
|
|
#include "GraphEditorDragDropAction.h"
|
|
#include "DragConnection.h"
|
|
#include "DragNode.h"
|
|
|
|
#include "AnimGraphDefinitions.h"
|
|
|
|
#endif//__GraphEditorCommon_h__
|