summaryrefslogtreecommitdiffstats
path: root/core/string/print_string.cpp
diff options
context:
space:
mode:
authorkobewi <kobewi4e@gmail.com>2021-10-07 15:40:48 +0200
committerkobewi <kobewi4e@gmail.com>2021-10-07 16:28:22 +0200
commit31012fd060117ff9ebdd3b2bf413f5904d2b9ebe (patch)
tree1f8bd214278ca7cc305eea79f44ee7f8893b7dbb /core/string/print_string.cpp
parent8afd2171d1f767c13a18b478b8fc8e6cb9df2157 (diff)
downloadredot-engine-31012fd060117ff9ebdd3b2bf413f5904d2b9ebe.tar.gz
Change print_line() to use any number of Variants
Diffstat (limited to 'core/string/print_string.cpp')
-rw-r--r--core/string/print_string.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/core/string/print_string.cpp b/core/string/print_string.cpp
index 345371d733..adc218f597 100644
--- a/core/string/print_string.cpp
+++ b/core/string/print_string.cpp
@@ -69,7 +69,7 @@ void remove_print_handler(PrintHandlerList *p_handler) {
ERR_FAIL_COND(l == nullptr);
}
-void print_line(String p_string) {
+void __print_line(String p_string) {
if (!_print_line_enabled) {
return;
}
@@ -108,3 +108,7 @@ void print_verbose(String p_string) {
print_line(p_string);
}
}
+
+String stringify_variants(Variant p_var) {
+ return p_var.operator String();
+}