Getting the project for your game
The prebuilt custom projects provide all of the custom asset types the game supports, and for newer games, they even include many assets from the game, such as UI elements or data tables.
Below are download links for each game:
- Dragon Ball FighterZ custom project
- The original Granblue Fantasy Versus does not have a custom project.
- Guilty Gear -Strive-'s custom project is bundled with the editor.
- DNF Duel custom project
- Granblue Fantasy Versus Rising custom project
[dropdown] Guilty Gear-specific information
You will need to extract a few things;
- Extract
GGSTContent_Patch.rar
intoRED
. - Extract
GGSTCookedEditor_Patch.rar
to merge bothEngine
andRED
folders from the archive to the game.
The Guilty Gear -Strive- custom project does not come with content by default. To get the content, you can copy pakchunk0-WindowsNoEditor.pak
from your copy of Strive into RED\Content\Paks
. If the Paks folder does not exist, create it.
Alternatively, you can create a symbolic link in Windows by either using one of the tools on the linked page or opening a Command Prompt in the RED/Content/Paks
directory and using a command like this:
mklink pakchunk0-WindowsNoEditor.pak "C:\Program Files (x86)\Steam\steamapps\common\GUILTY GEAR STRIVE\RED\Content\Paks\pakchunk0-WindowsNoEditor.pak"
.
This saves around 30 GB of hard drive space, since you're not duplicating the files in two places - and it will also update automatically. If this doesn't work, run as administrator - I also wasn't able to do this in Powershell, only Command Prompt.
Finally, if you don't want to do active work in the Advanced Project (due to the quantity of files), you can create a new project under the File dropdown at the top left - however, i've found this has to be "christened" by copying the Config
folder from /RED/
(in wherever you downloaded the custom project) into your new project's folder, overwriting as necessary. If this step is not done, cooking won't work.
To open these new projects, you can either open Unreal and use File -> Open Project...
, or set Windows to open the .uprojects (from C:\Users\[USER]\Documents\Unreal Projects
) with `UnrealEditor\RED\Binaries\Win64\GGSTCookedEditor.exe"
Once you have downloaded the correct project, extract it to your Unreal Projects directory. If you've run the editor before, you can usually find it at Documents\Unreal Projects\
. For Guilty Gear -Strive-, the custom project is already part of the editor.
You'll also need a working installation of Microsoft's Visual Studio in order for the editor to be able to compile the project.
- Dragon Ball FighterZ requires Visual Studio 2017.
- Guilty Gear -Strive- is already compiled, so you do not need Visual Studio.
- DNF Duel, and Granblue Fantasy Versus Rising require Visual Studio 2019.
For more information on how to set up Visual Studio for UE4, read the official Unreal Engine documentation.