1
0
mirror of https://github.com/godotengine/godot.git synced 2025-12-03 16:55:53 +00:00

Add expression history to evaluator

This commit is contained in:
kobewi
2025-07-08 00:27:49 +02:00
parent 4d1f26e1fd
commit 0d16f7893b
2 changed files with 47 additions and 1 deletions

View File

@@ -52,6 +52,10 @@ private:
EditorDebuggerInspector *inspector = nullptr;
LocalVector<String> expression_history;
int expression_index = -1;
void _line_edit_gui_input(const Ref<InputEvent> &p_event);
void _evaluate();
void _clear();