It's an easy trick I've learned which I think can come in handy for some modders.
If you want to remove objects such as textures or even blueprints, you can literally erase uasset content, and pack an empty file back into pak file.
It works on models, VFX, textures, sounds, and even blueprints.
For this example, I will be removing one of the enemies in Ghostrunner, the spiders.
First, I will locate the character blueprint using FModel.
Which in this case is /Content/ArtificialIntelligence/Characters/BP_EnemySpider
.
Create a mod folder with the same folder structure as it is found in FModel.
Every mod folder follows the pattern:
ModName_P/<Game>/Content/...
And for this example that will be:
NoSpiders_P/Ghostrunner/Content/...
followed the full path.
Which is:
/NoSpiders_P/Ghostrunner/Content/ArtificialIntelligence/Characters
- Create 2 text files, and rename them to match the object/asset we want to remove.
- Change the extension from
.txt
to.uasset
and.uexp
.
Package the mod folder using UnrealPak (Guide: How to Pak).
This mod is available to download here: No More Spiders for GR1