diff options
Diffstat (limited to 'misc/utility/godot_gdb_pretty_print.py')
-rw-r--r-- | misc/utility/godot_gdb_pretty_print.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/misc/utility/godot_gdb_pretty_print.py b/misc/utility/godot_gdb_pretty_print.py index 7edd668016..6f8098a43b 100644 --- a/misc/utility/godot_gdb_pretty_print.py +++ b/misc/utility/godot_gdb_pretty_print.py @@ -1,5 +1,5 @@ """ -Load this file to your GDB session to enable pretty-printing of some Godot C++ types. +Load this file to your GDB session to enable pretty-printing of some Redot C++ types. GDB command: `source misc/utility/godot_gdb_pretty_print.py`. @@ -9,7 +9,7 @@ the `setupCommands` of your configuration in `launch.json`: "setupCommands": [ ... { - "description": "Load custom pretty-printers for Godot types.", + "description": "Load custom pretty-printers for Redot types.", "text": "source ${workspaceFolder}/misc/utility/godot_gdb_pretty_print.py" } ] @@ -27,7 +27,7 @@ import re import gdb # type: ignore -# Printer for Godot StringName variables. +# Printer for Redot StringName variables. class GodotStringNamePrinter: def __init__(self, value): self.value = value @@ -40,7 +40,7 @@ class GodotStringNamePrinter: return "string" -# Printer for Godot String variables. +# Printer for Redot String variables. class GodotStringPrinter: def __init__(self, value): self.value = value @@ -53,7 +53,7 @@ class GodotStringPrinter: return "string" -# Printer for Godot Vector variables. +# Printer for Redot Vector variables. class GodotVectorPrinter: def __init__(self, value): self.value = value |