Hi! I have a problem while using the plugin in the blueprint project. It works fine in editor, but it never builds during the game packaging. In previous engine versions I’ve always got this message in the output log:
UATHelper: Packaging (Windows (64-bit)): TestPluginBP.uproject requires a temporary target.cs to be generated (<PluginName> plugin is enabled)
After that there is a build step. But in 4.24.0 and 4.24.1 this message is missing and there is no build step, so the packaged game fails to run with message:
LogPluginManager: Error: Unable to load plugin '<PluginName>'. Aborting.
I’ve found the only one way to force this build step by adding another project plugin and disable it, after that I’ve got message during packaging:
UATHelper: Packaging (Windows (64-bit)): TestPluginBP.uproject requires a temporary target.cs to be generated (<TempPluginName> plugin is disabled)
and build step is running after that.
What I’m missing? I’ve got such behavior even if I create a new plugin (blank plugin and blueprint function library plugin have been tested) using the 4.24.x engine version.