summaryrefslogtreecommitdiff
path: root/editor
diff options
context:
space:
mode:
authorJames <gotnospirit@gmail.com>2022-09-30 10:10:16 +0800
committerJames <gotnospirit@gmail.com>2022-09-30 10:10:16 +0800
commit6ec19b3681195e7ba91b86abb81fd4c829e3dd20 (patch)
treeefd39701d8e616e843236a1cc727ce8617119f96 /editor
parent56563ef09e779b9f4b105fea0e5a1a8e59c7cfe8 (diff)
Project converter: OS.get_datetime -> Time.get_datetime_dict_from_system
Diffstat (limited to 'editor')
-rw-r--r--editor/project_converter_3_to_4.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/editor/project_converter_3_to_4.cpp b/editor/project_converter_3_to_4.cpp
index cb76147a56..d8ff1e1b6e 100644
--- a/editor/project_converter_3_to_4.cpp
+++ b/editor/project_converter_3_to_4.cpp
@@ -3607,6 +3607,9 @@ void ProjectConverter3To4::process_gdscript_line(String &line, const RegExContai
if (line.contains("OS.get_unix_time")) {
line = line.replace("OS.get_unix_time", "Time.get_unix_time_from_system");
}
+ if (line.contains("OS.get_datetime")) {
+ line = line.replace("OS.get_datetime", "Time.get_datetime_dict_from_system");
+ }
}
void ProjectConverter3To4::process_csharp_line(String &line, const RegExContainer &reg_container) {