diff options
author | jpcerrone <jpcerronex@gmail.com> | 2023-05-16 12:26:58 -0300 |
---|---|---|
committer | jpcerrone <jpcerronex@gmail.com> | 2023-05-16 14:39:04 -0300 |
commit | 0985019c285e79bb2d86fd53435a1a6d6c03841e (patch) | |
tree | b300c706c9e03caf289383ca4f98cac3207d4c49 /editor/project_converter_3_to_4.cpp | |
parent | a8453cb3337c2e27c061a385f9c772cf670e38e0 (diff) | |
download | redot-engine-0985019c285e79bb2d86fd53435a1a6d6c03841e.tar.gz |
Fix Input Map key assignments missing after project conversion
Fixes #76336 (Input Map keys missing).
Moves the project.godot config_version stamping from the project manager
to the project converter. Now there's no difference between converting through
the project manager and the CLI tool.
Fixes being prompted to re-convert the project in the project manager after
having done so through the CLI tool.
Diffstat (limited to 'editor/project_converter_3_to_4.cpp')
-rw-r--r-- | editor/project_converter_3_to_4.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/editor/project_converter_3_to_4.cpp b/editor/project_converter_3_to_4.cpp index cae055c6c5..af5843d6cf 100644 --- a/editor/project_converter_3_to_4.cpp +++ b/editor/project_converter_3_to_4.cpp @@ -439,6 +439,7 @@ bool ProjectConverter3To4::convert() { rename_common(RenamesMap3To4::builtin_types_renames, reg_container.builtin_types_regexes, source_lines); rename_input_map_scancode(source_lines, reg_container); rename_common(RenamesMap3To4::input_map_renames, reg_container.input_map_regexes, source_lines); + custom_rename(source_lines, "config_version=4", "config_version=5"); } else if (file_name.ends_with(".csproj")) { // TODO } else if (file_name.ends_with(".import")) { |