Skip to content

Commit

Permalink
added template settings
Browse files Browse the repository at this point in the history
  • Loading branch information
Mythical-Github committed Jun 5, 2024
1 parent 8c812e5 commit f458377
Showing 1 changed file with 187 additions and 0 deletions.
187 changes: 187 additions & 0 deletions assets/templates/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,187 @@
{
"general_info": {
"override_default_working_dir": false,
"working_dir": "C:/Users/Mythical/Downloads/Output",
"window_title": "UnrealAutoMod Automation Script"
},
"engine_info": {
"unreal_engine_dir": "D:/unreal_engine_installs/UE_4.22",
"unreal_project_file": "C:/Users/Mythical/Documents/Github/InterposePrivate/unreal_project/Interpose/KevinSpel.uproject",
"toggle_engine_during_testing": false,
"resave_packages_and_fix_up_redirectors_before_engine_open": true,
"engine_launch_args": [],
"engine_cook_and_packaging_args": [],
"use_unversioned_cooked_content": true,
"clear_uproject_saved_cooked_dir_before_tests": false,
"always_build_project": false,
"override_automatic_version_finding": false,
"unreal_engine_major_version": "4",
"unreal_engine_minor_version": "22"
},
"game_info": {
"game_exe_path": "D:/SteamLibrary/steamapps/common/Zedfest/KevinSpel/Binaries/Win64/Zedfest.exe",
"launch_type": "steam",
"override_automatic_launcher_exe_finding": false,
"game_launcher_exe": "C:/Program Files (x86)/Steam/steam.exe",
"game_id": 1037080,
"skip_launching_game": false,
"override_automatic_window_title_finding": false,
"window_title_override_string": "Zedfest",
"launch_params": [
"-fileopenlog",
"-NOSPLASH"
]
},
"alt_uproject_name_in_game_dir": {
"use_alt_method": false,
"name": "Game"
},
"repak_info": {
"repak_path": "C:/modding/unreal_engine/repak/repak.exe",
"override_automatic_version_finding": false,
"repak_version": "V11"
},
"alt_exe_methods": [
{
"script_state": "pre_game_launch",
"alt_exe_path": "C:/modding/unreal_engine/Umodel/umodel.exe",
"execution_mode": "async",
"variable_args": []
},
{
"script_state": "post_game_launch",
"alt_exe_path": "C:/modding/unreal_engine/Umodel/umodel.exe",
"execution_mode": "async",
"variable_args": []
}
],
"process_kill_info": {
"auto_close_game": true,
"processes": [
{
"process_name": "Fmodel.exe",
"use_substring_check": false,
"script_state": "all"
},
{
"process_name": "Umodel",
"use_substring_check": true,
"script_state": "constant"
},
{
"process_name": "Zedfest",
"use_substring_check": true,
"script_state": "post_game_launch"
}
]
},
"auto_move_windows": [
{
"window_name": "UE4SS",
"use_substring_check": true,
"window_behaviour": "move",
"script_state": "post_game_launch",
"monitor": 1,
"resolution": {
"x": 1525,
"y": 850
}
},
{
"window_name": "min_test_window",
"use_substring_check": true,
"window_behaviour": "min",
"script_state": "constant",
"monitor": null,
"resolution": {
"x": null,
"y": null
}
},
{
"window_name": "max_test_window",
"use_substring_check": true,
"window_behaviour": "max",
"script_state": "post_game_launch",
"monitor": null,
"resolution": {
"x": null,
"y": null
}
}
],
"mod_pak_info": [
{
"mod_name": "EnginePakExample_P",
"pak_dir_structure": "LogicMods",
"mod_name_dir_type": "Mods",
"use_mod_name_dir_name_override": false,
"mod_name_dir_name_override": null,
"pak_chunk_num": 1,
"packing_type": "engine",
"compression_type": "None",
"is_enabled": false,
"manually_specified_assets": {
"asset_paths": [],
"tree_paths": []
}
},
{
"mod_name": "UnrealPakExample_P",
"pak_dir_structure": "~mods",
"mod_name_dir_type": "Mods",
"use_mod_name_dir_name_override": false,
"mod_name_dir_name_override": null,
"pak_chunk_num": 2,
"packing_type": "unreal_pak",
"compression_type": "Zlib",
"is_enabled": false,
"manually_specified_assets": {
"asset_paths": [
"Content/Mods/ModEntry/BP_ModEntry"
],
"tree_paths": [
"Content/Mods/Z_VillageLevel_P"
]
}
},
{
"mod_name": "RepakExample_P",
"pak_dir_structure": "interpose_mods/main",
"mod_name_dir_type": "Mods",
"use_mod_name_dir_name_override": false,
"mod_name_dir_name_override": null,
"pak_chunk_num": 3,
"packing_type": "repak",
"compression_type": "Zlib",
"is_enabled": true,
"manually_specified_assets": {
"asset_paths": [
"Content/Mods/ModEntry/BP_ModEntry"
],
"tree_paths": [
"Content/Mods/Z_VillageLevel_P"
]
}
},
{
"mod_name": "LooseFileExample",
"pak_dir_structure": null,
"mod_name_dir_type": "Mods",
"use_mod_name_dir_name_override": false,
"mod_name_dir_name_override": null,
"pak_chunk_num": null,
"packing_type": "loose",
"compression_type": null,
"is_enabled": false,
"manually_specified_assets": {
"asset_paths": [
"Content/Mods/ModEntry/BP_ModEntry"
],
"tree_paths": [
"Content/Mods/Z_VillageLevel_P"
]
}
}
]
}

0 comments on commit f458377

Please sign in to comment.