diff options
author | Ryan Roden-Corrent <ryan@rcorre.net> | 2023-03-06 18:16:35 -0500 |
---|---|---|
committer | Ryan Roden-Corrent <ryan@rcorre.net> | 2023-03-06 18:53:55 -0500 |
commit | 6b17c2b6e79adfbcd349ac16e1a1d31098562bc5 (patch) | |
tree | 8c7e291b7376f393b5e6830ce18bc6ad93547b8b /editor/project_converter_3_to_4.cpp | |
parent | 5f2137a05040beb84d14ca6dd465688d3917a3ee (diff) | |
download | redot-engine-6b17c2b6e79adfbcd349ac16e1a1d31098562bc5.tar.gz |
Add some missing renames to 3to4 tool.
MultiplayerPeerExtension isn't an exact replacement for
NetworkedMultiplayerCustom, but at least it gets you moving in the right direction.
Engine.editor_hint couldn't be fixed by the renames map, because you have to add a `()` at the end.
Diffstat (limited to 'editor/project_converter_3_to_4.cpp')
-rw-r--r-- | editor/project_converter_3_to_4.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/editor/project_converter_3_to_4.cpp b/editor/project_converter_3_to_4.cpp index a1dfbac719..97b3a11adf 100644 --- a/editor/project_converter_3_to_4.cpp +++ b/editor/project_converter_3_to_4.cpp @@ -2268,6 +2268,10 @@ void ProjectConverter3To4::process_gdscript_line(String &line, const RegExContai if (line.contains("_unhandled_key_input(event: InputEventKey)")) { line = line.replace("_unhandled_key_input(event: InputEventKey)", "_unhandled_key_input(event: InputEvent)"); } + + if (line.contains("Engine.editor_hint")) { + line = line.replace("Engine.editor_hint", "Engine.is_editor_hint()"); + } } void ProjectConverter3To4::process_csharp_line(String &line, const RegExContainer ®_container) { |