1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-07 12:30:27 +00:00

more debugger fixes

-setting/clearing breakpoints during run-time now works
-multi-line strings resulted in wrong line numbers in bytecode, fixed
This commit is contained in:
Juan Linietsky
2015-08-04 20:17:13 -03:00
parent 09a2de9916
commit 8280bb0de0
5 changed files with 37 additions and 0 deletions

View File

@@ -173,6 +173,8 @@ public:
void live_debug_duplicate_node(const NodePath& p_at,const String& p_new_name);
void live_debug_reparent_node(const NodePath& p_at,const NodePath& p_new_place,const String& p_new_name,int p_at_pos);
void set_breakpoint(const String& p_path,int p_line,bool p_enabled);
void update_live_edit_root();