From a8786b87fc198309a7e348622dbba04d30301257 Mon Sep 17 00:00:00 2001 From: Jamie Greunbaum Date: Mon, 2 Oct 2023 00:56:54 -0400 Subject: [PATCH] Hid a few more configuration options from the editor. --- .../Public/Nodes/ComboActionGraphNode.h | 22 +++++++++---------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/Source/ComboInput/Public/Nodes/ComboActionGraphNode.h b/Source/ComboInput/Public/Nodes/ComboActionGraphNode.h index e841fb5..93d69ff 100644 --- a/Source/ComboInput/Public/Nodes/ComboActionGraphNode.h +++ b/Source/ComboInput/Public/Nodes/ComboActionGraphNode.h @@ -218,35 +218,35 @@ public: #if WITH_EDITORONLY_DATA // Defines whether this Node type allows inputs - UPROPERTY(BlueprintReadOnly, EditDefaultsOnly, Category = "Editor") + UPROPERTY(BlueprintReadOnly, Category = "Editor") bool bAllowInputNodes; // Defines whether this Node type allows outputs - UPROPERTY(BlueprintReadOnly, EditDefaultsOnly, Category = "Editor") + UPROPERTY(BlueprintReadOnly, Category = "Editor") bool bAllowOutputNodes; // Defines whether this Node can be copied - UPROPERTY(BlueprintReadOnly, EditDefaultsOnly, Category = "Editor") + UPROPERTY(BlueprintReadOnly, Category = "Editor") bool bAllowCopy; // Defines whether this Node can be cut - UPROPERTY(BlueprintReadOnly, EditDefaultsOnly, Category = "Editor") + UPROPERTY(BlueprintReadOnly, Category = "Editor") bool bAllowCut; // Defines whether this Node can be pasted - UPROPERTY(BlueprintReadOnly, EditDefaultsOnly, Category = "Editor") + UPROPERTY(BlueprintReadOnly, Category = "Editor") bool bAllowPaste; // Defines whether this Node can be deleted - UPROPERTY(BlueprintReadOnly, EditDefaultsOnly, Category = "Editor") + UPROPERTY(BlueprintReadOnly, Category = "Editor") bool bAllowDelete; // Defines whether this Node can be manually created - UPROPERTY(BlueprintReadOnly, EditDefaultsOnly, Category = "Editor") + UPROPERTY(BlueprintReadOnly, Category = "Editor") bool bAllowManualCreate; // Display title of the Node - UPROPERTY(BlueprintReadOnly, EditDefaultsOnly, Category = "Editor") + UPROPERTY(BlueprintReadOnly, Category = "Editor") FText NodeTitle; // Display name of the Node menu category @@ -254,7 +254,7 @@ public: FText ContextMenuName; // List of compatible graph types - UPROPERTY(BlueprintReadOnly, VisibleAnywhere, Category = "Editor") + UPROPERTY(BlueprintReadOnly, Category = "Editor") TSubclassOf CompatibleGraphType; // Defines background colour of this Node @@ -262,11 +262,11 @@ public: FLinearColor BackgroundColor; // Contains Node Tooltip text - UPROPERTY(BlueprintReadOnly, EditDefaultsOnly, Category = "Editor") + UPROPERTY(BlueprintReadOnly, Category = "Editor") FText NodeTooltipText; // User friendly node type name - UPROPERTY(BlueprintReadOnly, EditDefaultsOnly, Category = "Editor") + UPROPERTY(BlueprintReadOnly, Category = "Editor") FText NodeTypeName; #endif