- Joined
- Apr 14, 2019
- Messages
- 218
- Reaction score
- 195
- First Language
- German
- Primarily Uses
- RMMV
Description of the Feature:
RPG Maker MV allows the plugin manager to specify resources not to be removed via the "Exclude unused files" option via the @requiredAssets feature. And despite reading so often in this forum that the "Exclude unused files" feature should best be avoided, it works quite well, once all assets are defined via the @requiredAssets in the plugin manager.

But this feature has one particular problem and that is it needs a specific resource. It doesn't allow wildcards like for example *.png or to specify a whole folder.
Mockups:
Why is this feature good?
Some plugin creators create subfolders for example specific images, but let the game creators put their own images into this folder. A good example for this would be SumRndmDde's picture choices. Such resources cannot be marked by the plugin authors as required beforehand.
Possible issues with this feature?
- Allow to specify folders as required
- Optional: allow wildcard for required assests.
RPG Maker MV allows the plugin manager to specify resources not to be removed via the "Exclude unused files" option via the @requiredAssets feature. And despite reading so often in this forum that the "Exclude unused files" feature should best be avoided, it works quite well, once all assets are defined via the @requiredAssets in the plugin manager.

But this feature has one particular problem and that is it needs a specific resource. It doesn't allow wildcards like for example *.png or to specify a whole folder.
Mockups:
Code:
Either
* @requiredAssets img/example/
or
* @requiredAssetFolder img/example/
Optional:
* @requiredAssets img/example/*.png
Some plugin creators create subfolders for example specific images, but let the game creators put their own images into this folder. A good example for this would be SumRndmDde's picture choices. Such resources cannot be marked by the plugin authors as required beforehand.
- Plugin creators can specify their subfolders as required.
- Makes "Exclude unused files" more reliable and actually useful for games with heavy plugin usage.
Possible issues with this feature?
- Makes it easier to include a lot of required resources during the deployment.
- No need anymore to create empty maps, with "Show Picture Commands" for all required resources.