How To Package Extra NonUASSET Files With Your Game - Epic Wiki
# How To Package Extra NonUASSET Files With Your Game
# Contents
- 1 Overview
- 2 Project Settings
- 3 Search for Additional
- 4 Add!
- 5 How To Access Content Folder In Packaged Game
- 6 Celebrate!
# Overview
In this wiki I give you a pictorial guide of how to add extra files to your packaged game that are not .uassets.
Please note there are two types, and the tooltips explain them thoroughly 😃
# UFS Files (.pak)
There are files which you expect UE4 to load via the Unreal File System, which will be put in the .pak file.
# Custom IO system files
And there are also files which you plan to load via your own methods in packaged game, which will be included but not added to the .pak file so your own IO system can still find them and load them.
♥
Rama
# Project Settings
# Search for Additional
# Add!
# How To Access Content Folder In Packaged Game
To find the Content folder of packaged game, you can use this code, I have a whole wiki on Paths in Packaged Games
//InstallDir/WindowsNoEditor/GameName/Content const FString ThePath = FPaths::ConvertRelativePathToFull(FPaths::GameContentDir());
# Celebrate!
♥
Rama
Retrieved from "https://wiki.unrealengine.com/index.php?title=How_To_Package_Extra_NonUASSET_Files_With_Your_Game&oldid=21408"