├── .gitignore ├── Assets ├── JobSystem.meta ├── JobSystem │ ├── Components.meta │ ├── Components │ │ ├── JobManagerComponent.cs │ │ ├── JobManagerComponent.cs.meta │ │ ├── ThreadedBehaviour.cs │ │ └── ThreadedBehaviour.cs.meta │ ├── Core.meta │ ├── Core │ │ ├── JobSystemCore.cs │ │ ├── JobSystemCore.cs.meta │ │ ├── JobSystemWorkers.cs │ │ └── JobSystemWorkers.cs.meta │ ├── Extensions.meta │ └── Extensions │ │ ├── TimeExt.cs │ │ └── TimeExt.cs.meta ├── Sample.meta └── Sample │ ├── TestThread.cs │ ├── TestThread.cs.meta │ ├── test.unity │ └── test.unity.meta ├── LICENSE ├── ProjectSettings ├── AudioManager.asset ├── ClusterInputManager.asset ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── InputManager.asset ├── NavMeshAreas.asset ├── NetworkManager.asset ├── Physics2DSettings.asset ├── ProjectSettings.asset ├── ProjectVersion.txt ├── QualitySettings.asset ├── TagManager.asset ├── TimeManager.asset └── UnityConnectSettings.asset └── README /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowndacorner/Unity-Multithreaded-Job-System/HEAD/.gitignore -------------------------------------------------------------------------------- /Assets/JobSystem.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowndacorner/Unity-Multithreaded-Job-System/HEAD/Assets/JobSystem.meta -------------------------------------------------------------------------------- /Assets/JobSystem/Components.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowndacorner/Unity-Multithreaded-Job-System/HEAD/Assets/JobSystem/Components.meta -------------------------------------------------------------------------------- /Assets/JobSystem/Components/JobManagerComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowndacorner/Unity-Multithreaded-Job-System/HEAD/Assets/JobSystem/Components/JobManagerComponent.cs -------------------------------------------------------------------------------- /Assets/JobSystem/Components/JobManagerComponent.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowndacorner/Unity-Multithreaded-Job-System/HEAD/Assets/JobSystem/Components/JobManagerComponent.cs.meta -------------------------------------------------------------------------------- /Assets/JobSystem/Components/ThreadedBehaviour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowndacorner/Unity-Multithreaded-Job-System/HEAD/Assets/JobSystem/Components/ThreadedBehaviour.cs -------------------------------------------------------------------------------- /Assets/JobSystem/Components/ThreadedBehaviour.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowndacorner/Unity-Multithreaded-Job-System/HEAD/Assets/JobSystem/Components/ThreadedBehaviour.cs.meta -------------------------------------------------------------------------------- /Assets/JobSystem/Core.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowndacorner/Unity-Multithreaded-Job-System/HEAD/Assets/JobSystem/Core.meta -------------------------------------------------------------------------------- /Assets/JobSystem/Core/JobSystemCore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowndacorner/Unity-Multithreaded-Job-System/HEAD/Assets/JobSystem/Core/JobSystemCore.cs -------------------------------------------------------------------------------- /Assets/JobSystem/Core/JobSystemCore.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowndacorner/Unity-Multithreaded-Job-System/HEAD/Assets/JobSystem/Core/JobSystemCore.cs.meta -------------------------------------------------------------------------------- /Assets/JobSystem/Core/JobSystemWorkers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowndacorner/Unity-Multithreaded-Job-System/HEAD/Assets/JobSystem/Core/JobSystemWorkers.cs -------------------------------------------------------------------------------- /Assets/JobSystem/Core/JobSystemWorkers.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowndacorner/Unity-Multithreaded-Job-System/HEAD/Assets/JobSystem/Core/JobSystemWorkers.cs.meta -------------------------------------------------------------------------------- /Assets/JobSystem/Extensions.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowndacorner/Unity-Multithreaded-Job-System/HEAD/Assets/JobSystem/Extensions.meta -------------------------------------------------------------------------------- /Assets/JobSystem/Extensions/TimeExt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowndacorner/Unity-Multithreaded-Job-System/HEAD/Assets/JobSystem/Extensions/TimeExt.cs -------------------------------------------------------------------------------- /Assets/JobSystem/Extensions/TimeExt.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowndacorner/Unity-Multithreaded-Job-System/HEAD/Assets/JobSystem/Extensions/TimeExt.cs.meta -------------------------------------------------------------------------------- /Assets/Sample.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowndacorner/Unity-Multithreaded-Job-System/HEAD/Assets/Sample.meta -------------------------------------------------------------------------------- /Assets/Sample/TestThread.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowndacorner/Unity-Multithreaded-Job-System/HEAD/Assets/Sample/TestThread.cs -------------------------------------------------------------------------------- /Assets/Sample/TestThread.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowndacorner/Unity-Multithreaded-Job-System/HEAD/Assets/Sample/TestThread.cs.meta -------------------------------------------------------------------------------- /Assets/Sample/test.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowndacorner/Unity-Multithreaded-Job-System/HEAD/Assets/Sample/test.unity -------------------------------------------------------------------------------- /Assets/Sample/test.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowndacorner/Unity-Multithreaded-Job-System/HEAD/Assets/Sample/test.unity.meta -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowndacorner/Unity-Multithreaded-Job-System/HEAD/LICENSE -------------------------------------------------------------------------------- /ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowndacorner/Unity-Multithreaded-Job-System/HEAD/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowndacorner/Unity-Multithreaded-Job-System/HEAD/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowndacorner/Unity-Multithreaded-Job-System/HEAD/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowndacorner/Unity-Multithreaded-Job-System/HEAD/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowndacorner/Unity-Multithreaded-Job-System/HEAD/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowndacorner/Unity-Multithreaded-Job-System/HEAD/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowndacorner/Unity-Multithreaded-Job-System/HEAD/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowndacorner/Unity-Multithreaded-Job-System/HEAD/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowndacorner/Unity-Multithreaded-Job-System/HEAD/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowndacorner/Unity-Multithreaded-Job-System/HEAD/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowndacorner/Unity-Multithreaded-Job-System/HEAD/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 5.5.0f3 2 | -------------------------------------------------------------------------------- /ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowndacorner/Unity-Multithreaded-Job-System/HEAD/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowndacorner/Unity-Multithreaded-Job-System/HEAD/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowndacorner/Unity-Multithreaded-Job-System/HEAD/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowndacorner/Unity-Multithreaded-Job-System/HEAD/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowndacorner/Unity-Multithreaded-Job-System/HEAD/README --------------------------------------------------------------------------------