Hi! I have a very simple question regarding the basic usage and mounting points. I did read all the docs but I still fail to understand this part:
Creates a link between a root path and a package content path (mount point).
This is required to make references between assets work. Should be called after mounting a pak.
@RootPath: Top content folder name of where your assets are in (Example: /TestDLC/).
@ContentPath: The path inside a pak to where the RootPath should point to. (Example:
../../../TestProject/Plugins/TestDLC/Content/)
void RegisterMountPoint(const FString &RootPath, const FString &ContentPath);
Can you give a practical example here? I,for example don’t understand why and if I alway have to specifcy the content path with ‘…/…/…/’ .Why? This is relative to what? Also what is RootPath here? Root content path in the project" ? Like, ‘Content’? If I build my pak not from a plugin but from the content directories in the project itself,then how does it look like? I mean, your docs don’t explain some very important stuff. It also would be nice to have in the example project you provide the pak project too,so we can see how it is structured.