As the title says. I’m working on another set of features in the form of a plugin that I would like to include into an already existing plugin I have on the marketplace, is it possible to build the 2 together without me having to merge the code into the current plugin thats already on the marketplace? That would get very annoying having to do for each little change.
It’s something I’ve been thinking about too. For code it’s pretty trivial, you’d just bring in the other plugin’s modules and add them to the module list. Assets are a different story because references will get broken unless you move them in the editor - a reference to AssetA in MyPlugin is stored as /MyPlugin/Path/To/AssetA
, so if you move to MyOtherPlugin
then anything referencing that asset won’t be able to find it.
1 Like
That sounds annoying, thankfully the bp assets are minimal. Thank you for the code heads up thats quite useful!