feat: modules moved and engine moved to submodule

This commit is contained in:
Jan van der Weide 2025-04-12 18:40:44 +02:00
parent dfb5e645cd
commit c33d2130cc
5136 changed files with 225275 additions and 64485 deletions

View file

@ -61,7 +61,7 @@ UndoRedo *EditorUndoRedoManager::get_history_undo_redo(int p_idx) const {
int EditorUndoRedoManager::get_history_id_for_object(Object *p_object) const {
int history_id = INVALID_HISTORY;
if (Object::cast_to<EditorDebuggerRemoteObject>(p_object)) {
if (Object::cast_to<EditorDebuggerRemoteObjects>(p_object)) {
return REMOTE_HISTORY;
}
@ -321,7 +321,7 @@ bool EditorUndoRedoManager::redo() {
}
int selected_history = INVALID_HISTORY;
double global_timestamp = INFINITY;
double global_timestamp = Math::INF;
// Pick the history with lowest last action timestamp (either global or current scene).
{