Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Flow.uplugin
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
{
"FileVersion" : 3,
"Version" : 2.2,
"FriendlyName" : "Flow",
Expand All @@ -8,7 +8,7 @@
"DocsURL" : "https://github.com/MothCocoon/FlowGraph/wiki",
"MarketplaceURL" : "",
"SupportURL": "https://discord.gg/Xmtr6GhbmW",
"EnabledByDefault" : true,
"EnabledByDefault" : false,
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This was added by our central tech team, who didn't want Flow to be enabled by default, even if it was a part of our central tech plugins bundle.

"CanContainContent" : false,
"IsBetaVersion" : false,
"Installed" : false,
Expand Down
7 changes: 5 additions & 2 deletions Source/Flow/Flow.Build.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ public Flow(ReadOnlyTargetRules target) : base(target)

PublicDependencyModuleNames.AddRange(new[]
{
"LevelSequence"
"LevelSequence",
});

PrivateDependencyModuleNames.AddRange(new[]
Expand All @@ -31,8 +31,11 @@ public Flow(ReadOnlyTargetRules target) : base(target)
{
PublicDependencyModuleNames.AddRange(new[]
{
"GraphEditor",
"MessageLog",
"UnrealEd"
"PropertyEditor",
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Some of the new Details Customization support needs to live in Flow Plugin proper, because that's where the code is, so the editor builds need these additional dependencies

"UnrealEd",
"SourceControl",
});
}
}
Expand Down
Loading