Navigation
API > API/Runtime > API/Runtime/Engine > API/Runtime/Engine/EdGraph > API/Runtime/Engine/EdGraph/UEdGraphSchema
References
| Module | Engine |
| Header | /Engine/Source/Runtime/Engine/Classes/EdGraph/EdGraphSchema.h |
| Include | #include "EdGraph/EdGraphSchema.h" |
virtual bool ArePinsCompatible
(
const UEdGraphPin * PinA,
const UEdGraphPin * PinB,
const UClass * CallingContext,
bool bIgnoreArray
) const
Remarks
Returns true if the types and directions of two pins are schema compatible. Handles outputting a more derived type to an input pin expecting a less derived type. true if the pin types and directions are compatible.
Parameters
| Name | Description |
|---|---|
| PinA | The pin a. |
| PinB | The pin b. |
| CallingContext | (optional) The calling context (required to properly evaluate pins of type Self) |
| bIgnoreArray | (optional) Whether or not to ignore differences between array and non-array types |