Skip to content

Commit

Permalink
Add: CI for build
Browse files Browse the repository at this point in the history
  • Loading branch information
nutti committed Dec 10, 2023
1 parent eb4e84a commit 68e15de
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion BlueprintToRSTDoc/BlueprintToRSTDoc.uplugin
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"Modules": [
{
"Name": "BlueprintToRSTDoc",
"Type": "Runtime",
"Type": "Editor",
"LoadingPhase": "PreLoadingScreen"
}
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ FString GetEdGraphPinType(UEdGraphPin* Pin)
}
else
{
#if !UE_VERSION_OLDER_THAN(5, 0, 0)
if (Pin->PinType.PinCategory == UEdGraphSchema_K2::PC_Real)
{
PinType = Pin->PinType.PinSubCategory.ToString();
Expand All @@ -87,6 +88,9 @@ FString GetEdGraphPinType(UEdGraphPin* Pin)
{
PinType = Pin->PinType.PinCategory.ToString();
}
#else
PinType = Pin->PinType.PinCategory.ToString();
#endif
}

return PinType;
Expand Down

0 comments on commit 68e15de

Please sign in to comment.