mirror of
https://github.com/4sval/FModel.git
synced 2026-06-15 20:40:52 -05:00
added .umap support sort of
This commit is contained in:
parent
31c3c0ba3f
commit
8b66257ca7
|
|
@ -226,7 +226,9 @@ namespace PakReader
|
|||
|
||||
public FPakEntry(BinaryReader reader, string mountPoint, int pakVersion)
|
||||
{
|
||||
Name = mountPoint + reader.ReadString(FPakInfo.MAX_PACKAGE_PATH);
|
||||
//replace .umap to .uasset to serialize umap files
|
||||
//this will be refactored with the updated pak reader
|
||||
Name = mountPoint + reader.ReadString(FPakInfo.MAX_PACKAGE_PATH).Replace(".umap", ".uasset");
|
||||
|
||||
// FPakEntry is duplicated before each stored file, without a filename. So,
|
||||
// remember the serialized size of this structure to avoid recomputation later.
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user