Implement JobSystem for parallel task management and integrate with LocalToWorldSystem

This commit is contained in:
max
2026-08-05 14:04:58 +02:00
parent 6ad5aa3f2c
commit a0f2713fdc
3 changed files with 133 additions and 22 deletions
+3
View File
@@ -71,6 +71,8 @@ public static class Engine
AudioDevice = new AudioDevice();
JobSystem.Default.Initialize();
OnInitialize?.Invoke();
while (!quit)
@@ -84,6 +86,7 @@ public static class Engine
MainWindow.Dispose();
GraphicsDevice.Dispose();
AudioDevice.Dispose();
JobSystem.Default.Shutdown();
SDL.SDL_Quit();
}