Rama
May 5, 2014, 8:02pm
1
Dear Friends at Epic,
#Context
A Packaged game that is for the public.
In development many maps were created in Content/Maps/SpecialMaps
#Question
I need to be able to access and load specific .umaps from the SpecialMaps directory, AFTER the game has been packaged.
What is the C++ to do this?
#paths
Is it like this?
FPaths::ContentDir() + FString("Maps/") + FString("SpecialMaps") + FString("Some.umap")
I need the file path of the map so I can load it when I Want to, not using streaming volumes
Thanks!
Dune
May 6, 2014, 11:46am
2
Does this work at all:
FString projectDir = FPaths:::GameContentDir();
projectDir += "Maps/SpecialMaps/Some.umap";
Hi . From looking at another question you posted recently, it seems like you may have resolved this issue. Is that correct? Would you mind explaining how you accomplished this if you were able to solve it?
Rama
May 6, 2014, 4:21pm
4
I still have to package my game and see if Dune’s answer will work.
thanks !
Rama
May 6, 2014, 4:22pm
5
I will mark this as answered unless my testing shows otherwise
Thanks Dune and !