HPL3/Resources Configuration
Every HPL3 mod needs to point out all of the resources that are to be used in the mod. Resources are essentially collections of folders and files which are going to be used by the mod. For example: 3D Models, Scripts, Audio, Textures, etc. This article explains how to configure the resources for a mod.
Resources Configuration File
In order to make the mod load our resources / assets, we need to list where exactly those resources are located. All of the resources for the mod are listed inside a single XML file, called resources.cfg
. The file should be located inside the main mod folder.
The syntax for adding a resource directory is as follows:
<Resources>
<Directory Path="/FolderName" AddSubDirs="true" />
</Resources>
Path - The relative path to the folder that contains the resources.
AddSubDirs - Whether to include sub-folders that are located inside the folder specified in Path
as part of the resources or not. It is recommended to always set this to true
.