More work on raise error K2 node

This commit is contained in:
2024-11-11 19:20:13 -05:00
parent e716c857fc
commit ce0a06c51c
3 changed files with 80 additions and 119 deletions

View File

@@ -53,16 +53,8 @@ class UK2Node_RaiseError : public UK2Node
//~ End UK2Node Interface.
private:
/** returns Format pin */
UEdGraphPin* GetFormatPin() const;
/**
* Finds an argument pin by name, checking strings in a strict, case sensitive fashion
*
* @param InPinName The pin name to check for
* @return NULL if the pin was not found, otherwise the found pin.
*/
UEdGraphPin* FindArgumentPin(const FName InPinName) const;
/** Create all necessary pins */
void CreateCorrectPins();
/** Synchronize the type of the given argument pin with the type its connected to, or reset it to a wildcard pin if there's no connection */
void SynchronizeArgumentPinType(UEdGraphPin* Pin);
@@ -72,9 +64,6 @@ private:
UPROPERTY()
TArray<FName> PinNames;
/** The "Format" input pin, always available on the node */
UEdGraphPin* CachedFormatPin;
/** Tooltip text for this node. */
FText NodeTooltip;
};