├── .gitignore ├── README.md └── WebDownloadDemo ├── .vs └── WebDownloadDemo │ └── v14 │ └── .suo ├── Assets ├── Demo.cs ├── Demo.cs.meta ├── Demo.unity ├── Demo.unity.meta ├── Jing.meta ├── Jing │ ├── Net.meta │ └── Net │ │ ├── Downloader.cs │ │ └── Downloader.cs.meta └── StreamingAssets.meta ├── 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 ├── WebDownloadDemo.csproj └── WebDownloadDemo.sln /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinglikeblue/UnityDownloadPlus/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinglikeblue/UnityDownloadPlus/HEAD/README.md -------------------------------------------------------------------------------- /WebDownloadDemo/.vs/WebDownloadDemo/v14/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinglikeblue/UnityDownloadPlus/HEAD/WebDownloadDemo/.vs/WebDownloadDemo/v14/.suo -------------------------------------------------------------------------------- /WebDownloadDemo/Assets/Demo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinglikeblue/UnityDownloadPlus/HEAD/WebDownloadDemo/Assets/Demo.cs -------------------------------------------------------------------------------- /WebDownloadDemo/Assets/Demo.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinglikeblue/UnityDownloadPlus/HEAD/WebDownloadDemo/Assets/Demo.cs.meta -------------------------------------------------------------------------------- /WebDownloadDemo/Assets/Demo.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinglikeblue/UnityDownloadPlus/HEAD/WebDownloadDemo/Assets/Demo.unity -------------------------------------------------------------------------------- /WebDownloadDemo/Assets/Demo.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinglikeblue/UnityDownloadPlus/HEAD/WebDownloadDemo/Assets/Demo.unity.meta -------------------------------------------------------------------------------- /WebDownloadDemo/Assets/Jing.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinglikeblue/UnityDownloadPlus/HEAD/WebDownloadDemo/Assets/Jing.meta -------------------------------------------------------------------------------- /WebDownloadDemo/Assets/Jing/Net.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinglikeblue/UnityDownloadPlus/HEAD/WebDownloadDemo/Assets/Jing/Net.meta -------------------------------------------------------------------------------- /WebDownloadDemo/Assets/Jing/Net/Downloader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinglikeblue/UnityDownloadPlus/HEAD/WebDownloadDemo/Assets/Jing/Net/Downloader.cs -------------------------------------------------------------------------------- /WebDownloadDemo/Assets/Jing/Net/Downloader.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinglikeblue/UnityDownloadPlus/HEAD/WebDownloadDemo/Assets/Jing/Net/Downloader.cs.meta -------------------------------------------------------------------------------- /WebDownloadDemo/Assets/StreamingAssets.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinglikeblue/UnityDownloadPlus/HEAD/WebDownloadDemo/Assets/StreamingAssets.meta -------------------------------------------------------------------------------- /WebDownloadDemo/ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinglikeblue/UnityDownloadPlus/HEAD/WebDownloadDemo/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /WebDownloadDemo/ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinglikeblue/UnityDownloadPlus/HEAD/WebDownloadDemo/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /WebDownloadDemo/ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinglikeblue/UnityDownloadPlus/HEAD/WebDownloadDemo/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /WebDownloadDemo/ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinglikeblue/UnityDownloadPlus/HEAD/WebDownloadDemo/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /WebDownloadDemo/ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinglikeblue/UnityDownloadPlus/HEAD/WebDownloadDemo/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /WebDownloadDemo/ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinglikeblue/UnityDownloadPlus/HEAD/WebDownloadDemo/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /WebDownloadDemo/ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinglikeblue/UnityDownloadPlus/HEAD/WebDownloadDemo/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /WebDownloadDemo/ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinglikeblue/UnityDownloadPlus/HEAD/WebDownloadDemo/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /WebDownloadDemo/ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinglikeblue/UnityDownloadPlus/HEAD/WebDownloadDemo/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /WebDownloadDemo/ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinglikeblue/UnityDownloadPlus/HEAD/WebDownloadDemo/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /WebDownloadDemo/ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinglikeblue/UnityDownloadPlus/HEAD/WebDownloadDemo/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /WebDownloadDemo/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 5.6.5f1 2 | -------------------------------------------------------------------------------- /WebDownloadDemo/ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinglikeblue/UnityDownloadPlus/HEAD/WebDownloadDemo/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /WebDownloadDemo/ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinglikeblue/UnityDownloadPlus/HEAD/WebDownloadDemo/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /WebDownloadDemo/ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinglikeblue/UnityDownloadPlus/HEAD/WebDownloadDemo/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /WebDownloadDemo/ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinglikeblue/UnityDownloadPlus/HEAD/WebDownloadDemo/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /WebDownloadDemo/WebDownloadDemo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinglikeblue/UnityDownloadPlus/HEAD/WebDownloadDemo/WebDownloadDemo.csproj -------------------------------------------------------------------------------- /WebDownloadDemo/WebDownloadDemo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinglikeblue/UnityDownloadPlus/HEAD/WebDownloadDemo/WebDownloadDemo.sln --------------------------------------------------------------------------------