diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2022-12-10 10:21:19 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-10 10:21:19 +0100 |
commit | f6ea295bb10da4bad623433c74086072fb0e2a6a (patch) | |
tree | 5a72d27fc186b99b19280cb6f421e7031c84c639 /modules/gdscript/gdscript.h | |
parent | ae86d907e75c3de9b039e7cc77e521bc9739e6dc (diff) | |
parent | d531869a7c3c73d79c6ead71c7736f285bf6e1a1 (diff) |
Merge pull request #69467 from rune-scape/rune-subclass-script-path
GDScript: Fix subclass script path issues
Diffstat (limited to 'modules/gdscript/gdscript.h')
-rw-r--r-- | modules/gdscript/gdscript.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/gdscript/gdscript.h b/modules/gdscript/gdscript.h index 2df89d812c..7911ea47ec 100644 --- a/modules/gdscript/gdscript.h +++ b/modules/gdscript/gdscript.h @@ -240,6 +240,7 @@ public: virtual Error reload(bool p_keep_state = false) override; virtual void set_path(const String &p_path, bool p_take_over = false) override; + String get_script_path() const; Error load_source_code(const String &p_path); Error load_byte_code(const String &p_path); @@ -432,7 +433,7 @@ public: csi.write[_debug_call_stack_pos - i - 1].line = _call_stack[i].line ? *_call_stack[i].line : 0; if (_call_stack[i].function) { csi.write[_debug_call_stack_pos - i - 1].func = _call_stack[i].function->get_name(); - csi.write[_debug_call_stack_pos - i - 1].file = _call_stack[i].function->get_script()->get_path(); + csi.write[_debug_call_stack_pos - i - 1].file = _call_stack[i].function->get_script()->get_script_path(); } } return csi; |