Navigation
API > API/Editor > API/Editor/BlueprintGraph > API/Editor/BlueprintGraph/UEdGraphSchema_K2
Description
Returns the connection response for connecting PinA to PinB, which have already been determined to be compatible types with a compatible direction. InputPin and OutputPin are PinA and PinB or vis versa, indicating their direction.
| Name | DetermineConnectionResponseOfCompatibleTypedPins |
| Type | function |
| Header File | /Engine/Source/Editor/BlueprintGraph/Classes/EdGraphSchema_K2.h |
| Include Path | #include "EdGraphSchema_K2.h" |
| Source | /Engine/Source/Editor/BlueprintGraph/Private/EdGraphSchema_K2.cpp |
virtual const FPinConnectionResponse DetermineConnectionResponseOfCompatibleTypedPins
(
const UEdGraphPin * PinA,
const UEdGraphPin * PinB,
const UEdGraphPin * InputPin,
const UEdGraphPin * OutputPin
) const
The message and action to take on trying to make this connection.
Parameters
| Name | Remarks |
|---|---|
| PinA | The pin a. |
| PinB | The pin b. |
| InputPin | Either PinA or PinB, depending on which one is the input. |
| OutputPin | Either PinA or PinB, depending on which one is the output. |