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