diff options
author | Trashguy <trashguy@gmail.com> | 2024-10-11 12:21:42 -0400 |
---|---|---|
committer | Spartan322 <Megacake1234@gmail.com> | 2024-10-13 15:05:24 -0400 |
commit | 9901f655fb46bd345770ad5f4a1638c4051b1816 (patch) | |
tree | bb22b4881145f122568c8f2e51e912078ad1b4fc /misc/utility/godot_gdb_pretty_print.py | |
parent | 6699ae7897658e44efc3cfb2cba91c11a8f5aa6a (diff) | |
download | redot-engine-9901f655fb46bd345770ad5f4a1638c4051b1816.tar.gz |
Rebrand Godot 4.3 to Redot
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 |