From 1f6f89a4f86935b5c4ec1394c7cb66b10b5ed777 Mon Sep 17 00:00:00 2001 From: ManuelBlanc Date: Mon, 18 Feb 2019 12:19:02 +0100 Subject: [PATCH] Add .vmbrc file It is modified so the vmf/ directory can be used with VMB's watch cmdlet. Changes with respect to default .vmbrc file: + Set `mods_dir` to `"."` (was `"mods"`). + Set `temp_dir` to `".temp"` (was `""`"). + Set `ignored_dirs` to `[ "assets" ]` (was: `[]`). --- .vmbrc | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .vmbrc diff --git a/.vmbrc b/.vmbrc new file mode 100644 index 0000000..f92920f --- /dev/null +++ b/.vmbrc @@ -0,0 +1,29 @@ +{ + "mods_dir": ".", + "temp_dir": ".temp", + "game": 2, + "game_id1": "235540", + "game_id2": "552500", + "tools_id1": "718610", + "tools_id2": "866060", + "fallback_tools_dir1": "C:/Program Files (x86)/Steam/steamapps/common/Warhammer End Times Vermintide Mod Tools/", + "fallback_tools_dir2": "C:/Program Files (x86)/Steam/steamapps/common/Vermintide 2 SDK/", + "fallback_steamapps_dir1": "C:/Program Files (x86)/Steam/steamapps/", + "fallback_steamapps_dir2": "C:/Program Files (x86)/Steam/steamapps/", + "use_fallback": false, + "copy_source_code": false, + "bundle_extension1": "", + "bundle_extension2": ".mod_bundle", + "use_new_format1": false, + "use_new_format2": true, + "template_dir": ".template-vmf", + "template_preview_image": "item_preview.png", + "template_core_files": [ + "core/**" + ], + "include_dot_files": false, + "ignored_dirs": [ + "assets" + ], + "ignore_build_errors": false +}