Update
This commit is contained in:
@@ -23,7 +23,8 @@
|
|||||||
{
|
{
|
||||||
"Name": "FLESHEditor",
|
"Name": "FLESHEditor",
|
||||||
"Type": "Editor",
|
"Type": "Editor",
|
||||||
"LoadingPhase": "PostEngineInit"
|
"LoadingPhase": "PostEngineInit",
|
||||||
|
"Enabled": false
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"Plugins": [
|
"Plugins": [
|
||||||
|
@@ -11,6 +11,7 @@ public class FLESH : ModuleRules
|
|||||||
PublicIncludePaths.AddRange(
|
PublicIncludePaths.AddRange(
|
||||||
new string[] {
|
new string[] {
|
||||||
// ... add public include paths required here ...
|
// ... add public include paths required here ...
|
||||||
|
"$(EngineDir)/Plugins/Experimental/GeometryScripting/Source/GeometryScriptingCore/Public"
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
|
@@ -41,6 +41,8 @@ public class FLESHEditor : ModuleRules
|
|||||||
"ApplicationCore",
|
"ApplicationCore",
|
||||||
"AppFramework",
|
"AppFramework",
|
||||||
"LevelEditor",
|
"LevelEditor",
|
||||||
|
"AssetTools",
|
||||||
|
"GraphEditor",
|
||||||
"GeometryCore",
|
"GeometryCore",
|
||||||
"GeometryFramework",
|
"GeometryFramework",
|
||||||
"GeometryScriptingEditor",
|
"GeometryScriptingEditor",
|
||||||
|
@@ -9,6 +9,8 @@
|
|||||||
#include "IAssetTools.h"
|
#include "IAssetTools.h"
|
||||||
#include "EdGraphUtilities.h"
|
#include "EdGraphUtilities.h"
|
||||||
#include "Modules/ModuleManager.h"
|
#include "Modules/ModuleManager.h"
|
||||||
|
#include "GraphEditorActions.h"
|
||||||
|
#include "AssetTypeActions_Base.h"
|
||||||
|
|
||||||
#define LOCTEXT_NAMESPACE "DismembermentGraphEditor"
|
#define LOCTEXT_NAMESPACE "DismembermentGraphEditor"
|
||||||
|
|
||||||
|
@@ -6,6 +6,7 @@
|
|||||||
#include "Widgets/SBoxPanel.h"
|
#include "Widgets/SBoxPanel.h"
|
||||||
#include "Widgets/Text/SInlineEditableTextBlock.h"
|
#include "Widgets/Text/SInlineEditableTextBlock.h"
|
||||||
#include "Widgets/Images/SImage.h"
|
#include "Widgets/Images/SImage.h"
|
||||||
|
#include "Styling/AppStyle.h"
|
||||||
|
|
||||||
BEGIN_SLATE_FUNCTION_BUILD_OPTIMIZATION
|
BEGIN_SLATE_FUNCTION_BUILD_OPTIMIZATION
|
||||||
|
|
||||||
@@ -99,7 +100,7 @@ void SDismembermentGraphNode::UpdateGraphNode()
|
|||||||
[
|
[
|
||||||
SNew(STextBlock)
|
SNew(STextBlock)
|
||||||
.Text(this, &SDismembermentGraphNode::GetNodeDescription)
|
.Text(this, &SDismembermentGraphNode::GetNodeDescription)
|
||||||
.TextStyle(FEditorStyle::Get(), "Graph.StateNode.Description")
|
.TextStyle(FAppStyle::Get(), "Graph.StateNode.Description")
|
||||||
.WrapTextAt(200.0f)
|
.WrapTextAt(200.0f)
|
||||||
]
|
]
|
||||||
// Node preview
|
// Node preview
|
||||||
|
Reference in New Issue
Block a user