-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
337 additions
and
485 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
package com.tb24.blenderumap; | ||
|
||
import me.fungames.jfortniteparse.ue4.versions.Ue4Version; | ||
|
||
import java.util.Collections; | ||
import java.util.List; | ||
|
||
public class Config { | ||
public String PaksDirectory = "C:\\Program Files\\Epic Games\\Fortnite\\FortniteGame\\Content\\Paks"; | ||
public Ue4Version UEVersion = Ue4Version.GAME_UE4_LATEST; | ||
public List<MyFileProvider.EncryptionKey> EncryptionKeys = Collections.emptyList(); | ||
public boolean bDumpAssets = false; | ||
public int ObjectCacheSize = 100; | ||
public boolean bReadMaterials = true; | ||
public boolean bExportToDDSWhenPossible = true; | ||
public boolean bExportBuildingFoundations = true; | ||
public String ExportPackage; | ||
} |
Oops, something went wrong.