summaryrefslogtreecommitdiffstats
path: root/misc/utility/godot_gdb_pretty_print.py
diff options
context:
space:
mode:
authorTrashguy <trashguy@gmail.com>2024-10-11 12:21:42 -0400
committerSpartan322 <Megacake1234@gmail.com>2024-10-13 15:05:24 -0400
commit9901f655fb46bd345770ad5f4a1638c4051b1816 (patch)
treebb22b4881145f122568c8f2e51e912078ad1b4fc /misc/utility/godot_gdb_pretty_print.py
parent6699ae7897658e44efc3cfb2cba91c11a8f5aa6a (diff)
downloadredot-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.py10
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