We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent db48d57 commit c11a72eCopy full SHA for c11a72e
UE4SS/src/UE4SSProgram.cpp
@@ -38,6 +38,7 @@
38
#include <Signatures.hpp>
39
#include <Timer/ScopedTimer.hpp>
40
#include <UE4SSProgram.hpp>
41
+#include <AsyncCompute.hpp>
42
#include <Unreal/AGameMode.hpp>
43
#include <Unreal/AGameModeBase.hpp>
44
#include <Unreal/GameplayStatics.hpp>
@@ -1095,6 +1096,9 @@ namespace RC
1095
1096
m_queued_events.end());
1097
}
1098
1099
+ // Process any completed async compute callbacks
1100
+ AsyncComputeManager::get().process_completed_tasks();
1101
+
1102
// Commented out because this system (turn off hotkeys when in-game console is open) it doesn't work properly.
1103
/*
1104
auto* player_controller = get_player_controller();
0 commit comments