├── .github ├── scripts │ └── add-tags.sh ├── templates │ └── upgrade-unity-pr-body.md └── workflows │ ├── release.yml │ └── upgrade-unity.yml ├── .gitignore ├── .vscode ├── extensions.json ├── launch.json ├── settings.json └── tasks.json ├── Assets ├── Materials.meta ├── Materials │ ├── Default.mat │ ├── Default.mat.meta │ ├── Ground.mat │ └── Ground.mat.meta ├── Plugins.meta ├── Plugins │ ├── WebGL.meta │ └── WebGL │ │ ├── WebBridge.meta │ │ ├── WebBridge │ │ ├── Attributes.meta │ │ ├── Attributes │ │ │ ├── WebCommandAttribute.cs │ │ │ └── WebCommandAttribute.cs.meta │ │ ├── CommonCommands.cs │ │ ├── CommonCommands.cs.meta │ │ ├── Supyrb.WebBridge.asmdef │ │ ├── Supyrb.WebBridge.asmdef.meta │ │ ├── WebBridge.cs │ │ ├── WebBridge.cs.meta │ │ ├── WebCommands.cs │ │ └── WebCommands.cs.meta │ │ ├── WebTools.meta │ │ └── WebTools │ │ ├── EventListeners.meta │ │ ├── EventListeners │ │ ├── CommonWebEventListener.cs │ │ ├── CommonWebEventListener.cs.meta │ │ ├── WebEventListener.cs │ │ ├── WebEventListener.cs.meta │ │ ├── WebEventListeners.cs │ │ ├── WebEventListeners.cs.meta │ │ ├── WebEventListeners.jslib │ │ └── WebEventListeners.jslib.meta │ │ ├── Supyrb.WebTools.asmdef │ │ ├── Supyrb.WebTools.asmdef.meta │ │ ├── WebToolPlugins.cs │ │ ├── WebToolPlugins.cs.meta │ │ ├── WebToolPlugins.jslib │ │ ├── WebToolPlugins.jslib.meta │ │ ├── WebToolTimeTracker.cs │ │ └── WebToolTimeTracker.cs.meta ├── Prefabs.meta ├── Prefabs │ ├── RigidbodyCube.prefab │ ├── RigidbodyCube.prefab.meta │ ├── Spawner.prefab │ └── Spawner.prefab.meta ├── Scenes.meta ├── Scenes │ ├── LightingSettings.lighting │ ├── LightingSettings.lighting.meta │ ├── Main.unity │ └── Main.unity.meta ├── Scripts.meta ├── Scripts │ ├── ConstantRotation.cs │ ├── ConstantRotation.cs.meta │ ├── Editor.meta │ ├── Editor │ │ ├── BuildScript.cs │ │ ├── BuildScript.cs.meta │ │ ├── BuildScriptMenu.cs │ │ ├── BuildScriptMenu.cs.meta │ │ ├── CodeOptimizationWebGL.cs │ │ ├── CodeOptimizationWebGL.cs.meta │ │ ├── RemoveMobileSupportWarningWebBuild.cs │ │ ├── RemoveMobileSupportWarningWebBuild.cs.meta │ │ ├── UnityPackageScripts.cs │ │ └── UnityPackageScripts.cs.meta │ ├── ObjectSpawnController.cs │ ├── ObjectSpawnController.cs.meta │ ├── ObjectSpawner.cs │ ├── ObjectSpawner.cs.meta │ ├── ObjectSpawnerCommands.cs │ └── ObjectSpawnerCommands.cs.meta ├── WebGLTemplates.meta └── WebGLTemplates │ ├── Develop.meta │ ├── Develop │ ├── LICENSE │ ├── LICENSE.meta │ ├── debug-console.css │ ├── debug-console.css.meta │ ├── debug-console.js │ ├── debug-console.js.meta │ ├── favicon.ico │ ├── favicon.ico.meta │ ├── index.html │ ├── index.html.meta │ ├── logo.svg │ ├── logo.svg.meta │ ├── thumbnail.png │ └── thumbnail.png.meta │ ├── Release.meta │ └── Release │ ├── LICENSE │ ├── LICENSE.meta │ ├── favicon.ico │ ├── favicon.ico.meta │ ├── index.html │ ├── index.html.meta │ ├── logo.svg │ ├── logo.svg.meta │ ├── pretty-console.js │ ├── pretty-console.js.meta │ ├── thumbnail.png │ └── thumbnail.png.meta ├── Configuration ├── 2019 │ └── .htaccess └── 2020 │ └── .htaccess ├── Documentation ├── ChangeCompressionToGzip.png ├── DebugConsole.png ├── UnityRichTextSupport.png └── UpgradeUnityGithubAction.png ├── LICENSE ├── Packages ├── manifest.json └── packages-lock.json ├── ProjectSettings ├── AudioManager.asset ├── ClusterInputManager.asset ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── InputManager.asset ├── MemorySettings.asset ├── MultiplayerManager.asset ├── NavMeshAreas.asset ├── NetworkManager.asset ├── PackageManagerSettings.asset ├── Physics2DSettings.asset ├── PresetManager.asset ├── ProjectSettings.asset ├── ProjectVersion.txt ├── QualitySettings.asset ├── ShaderGraphSettings.asset ├── TagManager.asset ├── TimeManager.asset ├── UnityConnectSettings.asset ├── VFXManager.asset ├── VersionControlSettings.asset └── XRSettings.asset ├── README.md ├── preview.png └── webgl_sharing /.github/scripts/add-tags.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/.github/scripts/add-tags.sh -------------------------------------------------------------------------------- /.github/templates/upgrade-unity-pr-body.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/.github/templates/upgrade-unity-pr-body.md -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/upgrade-unity.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/.github/workflows/upgrade-unity.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /Assets/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/Assets/Materials.meta -------------------------------------------------------------------------------- /Assets/Materials/Default.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/Assets/Materials/Default.mat -------------------------------------------------------------------------------- /Assets/Materials/Default.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/Assets/Materials/Default.mat.meta -------------------------------------------------------------------------------- /Assets/Materials/Ground.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/Assets/Materials/Ground.mat -------------------------------------------------------------------------------- /Assets/Materials/Ground.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/Assets/Materials/Ground.mat.meta -------------------------------------------------------------------------------- /Assets/Plugins.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/Assets/Plugins.meta -------------------------------------------------------------------------------- /Assets/Plugins/WebGL.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/Assets/Plugins/WebGL.meta -------------------------------------------------------------------------------- /Assets/Plugins/WebGL/WebBridge.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/Assets/Plugins/WebGL/WebBridge.meta -------------------------------------------------------------------------------- /Assets/Plugins/WebGL/WebBridge/Attributes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/Assets/Plugins/WebGL/WebBridge/Attributes.meta -------------------------------------------------------------------------------- /Assets/Plugins/WebGL/WebBridge/Attributes/WebCommandAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/Assets/Plugins/WebGL/WebBridge/Attributes/WebCommandAttribute.cs -------------------------------------------------------------------------------- /Assets/Plugins/WebGL/WebBridge/Attributes/WebCommandAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/Assets/Plugins/WebGL/WebBridge/Attributes/WebCommandAttribute.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/WebGL/WebBridge/CommonCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/Assets/Plugins/WebGL/WebBridge/CommonCommands.cs -------------------------------------------------------------------------------- /Assets/Plugins/WebGL/WebBridge/CommonCommands.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/Assets/Plugins/WebGL/WebBridge/CommonCommands.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/WebGL/WebBridge/Supyrb.WebBridge.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/Assets/Plugins/WebGL/WebBridge/Supyrb.WebBridge.asmdef -------------------------------------------------------------------------------- /Assets/Plugins/WebGL/WebBridge/Supyrb.WebBridge.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/Assets/Plugins/WebGL/WebBridge/Supyrb.WebBridge.asmdef.meta -------------------------------------------------------------------------------- /Assets/Plugins/WebGL/WebBridge/WebBridge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/Assets/Plugins/WebGL/WebBridge/WebBridge.cs -------------------------------------------------------------------------------- /Assets/Plugins/WebGL/WebBridge/WebBridge.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/Assets/Plugins/WebGL/WebBridge/WebBridge.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/WebGL/WebBridge/WebCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/Assets/Plugins/WebGL/WebBridge/WebCommands.cs -------------------------------------------------------------------------------- /Assets/Plugins/WebGL/WebBridge/WebCommands.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/Assets/Plugins/WebGL/WebBridge/WebCommands.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/WebGL/WebTools.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/Assets/Plugins/WebGL/WebTools.meta -------------------------------------------------------------------------------- /Assets/Plugins/WebGL/WebTools/EventListeners.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/Assets/Plugins/WebGL/WebTools/EventListeners.meta -------------------------------------------------------------------------------- /Assets/Plugins/WebGL/WebTools/EventListeners/CommonWebEventListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/Assets/Plugins/WebGL/WebTools/EventListeners/CommonWebEventListener.cs -------------------------------------------------------------------------------- /Assets/Plugins/WebGL/WebTools/EventListeners/CommonWebEventListener.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/Assets/Plugins/WebGL/WebTools/EventListeners/CommonWebEventListener.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/WebGL/WebTools/EventListeners/WebEventListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/Assets/Plugins/WebGL/WebTools/EventListeners/WebEventListener.cs -------------------------------------------------------------------------------- /Assets/Plugins/WebGL/WebTools/EventListeners/WebEventListener.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/Assets/Plugins/WebGL/WebTools/EventListeners/WebEventListener.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/WebGL/WebTools/EventListeners/WebEventListeners.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/Assets/Plugins/WebGL/WebTools/EventListeners/WebEventListeners.cs -------------------------------------------------------------------------------- /Assets/Plugins/WebGL/WebTools/EventListeners/WebEventListeners.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/Assets/Plugins/WebGL/WebTools/EventListeners/WebEventListeners.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/WebGL/WebTools/EventListeners/WebEventListeners.jslib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/Assets/Plugins/WebGL/WebTools/EventListeners/WebEventListeners.jslib -------------------------------------------------------------------------------- /Assets/Plugins/WebGL/WebTools/EventListeners/WebEventListeners.jslib.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/Assets/Plugins/WebGL/WebTools/EventListeners/WebEventListeners.jslib.meta -------------------------------------------------------------------------------- /Assets/Plugins/WebGL/WebTools/Supyrb.WebTools.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/Assets/Plugins/WebGL/WebTools/Supyrb.WebTools.asmdef -------------------------------------------------------------------------------- /Assets/Plugins/WebGL/WebTools/Supyrb.WebTools.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/Assets/Plugins/WebGL/WebTools/Supyrb.WebTools.asmdef.meta -------------------------------------------------------------------------------- /Assets/Plugins/WebGL/WebTools/WebToolPlugins.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/Assets/Plugins/WebGL/WebTools/WebToolPlugins.cs -------------------------------------------------------------------------------- /Assets/Plugins/WebGL/WebTools/WebToolPlugins.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/Assets/Plugins/WebGL/WebTools/WebToolPlugins.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/WebGL/WebTools/WebToolPlugins.jslib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/Assets/Plugins/WebGL/WebTools/WebToolPlugins.jslib -------------------------------------------------------------------------------- /Assets/Plugins/WebGL/WebTools/WebToolPlugins.jslib.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/Assets/Plugins/WebGL/WebTools/WebToolPlugins.jslib.meta -------------------------------------------------------------------------------- /Assets/Plugins/WebGL/WebTools/WebToolTimeTracker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/Assets/Plugins/WebGL/WebTools/WebToolTimeTracker.cs -------------------------------------------------------------------------------- /Assets/Plugins/WebGL/WebTools/WebToolTimeTracker.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/Assets/Plugins/WebGL/WebTools/WebToolTimeTracker.cs.meta -------------------------------------------------------------------------------- /Assets/Prefabs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/Assets/Prefabs.meta -------------------------------------------------------------------------------- /Assets/Prefabs/RigidbodyCube.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/Assets/Prefabs/RigidbodyCube.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/RigidbodyCube.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/Assets/Prefabs/RigidbodyCube.prefab.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Spawner.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/Assets/Prefabs/Spawner.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Spawner.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/Assets/Prefabs/Spawner.prefab.meta -------------------------------------------------------------------------------- /Assets/Scenes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/Assets/Scenes.meta -------------------------------------------------------------------------------- /Assets/Scenes/LightingSettings.lighting: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/Assets/Scenes/LightingSettings.lighting -------------------------------------------------------------------------------- /Assets/Scenes/LightingSettings.lighting.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/Assets/Scenes/LightingSettings.lighting.meta -------------------------------------------------------------------------------- /Assets/Scenes/Main.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/Assets/Scenes/Main.unity -------------------------------------------------------------------------------- /Assets/Scenes/Main.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/Assets/Scenes/Main.unity.meta -------------------------------------------------------------------------------- /Assets/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/Assets/Scripts.meta -------------------------------------------------------------------------------- /Assets/Scripts/ConstantRotation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/Assets/Scripts/ConstantRotation.cs -------------------------------------------------------------------------------- /Assets/Scripts/ConstantRotation.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/Assets/Scripts/ConstantRotation.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/Assets/Scripts/Editor.meta -------------------------------------------------------------------------------- /Assets/Scripts/Editor/BuildScript.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/Assets/Scripts/Editor/BuildScript.cs -------------------------------------------------------------------------------- /Assets/Scripts/Editor/BuildScript.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/Assets/Scripts/Editor/BuildScript.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Editor/BuildScriptMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/Assets/Scripts/Editor/BuildScriptMenu.cs -------------------------------------------------------------------------------- /Assets/Scripts/Editor/BuildScriptMenu.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/Assets/Scripts/Editor/BuildScriptMenu.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Editor/CodeOptimizationWebGL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/Assets/Scripts/Editor/CodeOptimizationWebGL.cs -------------------------------------------------------------------------------- /Assets/Scripts/Editor/CodeOptimizationWebGL.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/Assets/Scripts/Editor/CodeOptimizationWebGL.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Editor/RemoveMobileSupportWarningWebBuild.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/Assets/Scripts/Editor/RemoveMobileSupportWarningWebBuild.cs -------------------------------------------------------------------------------- /Assets/Scripts/Editor/RemoveMobileSupportWarningWebBuild.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/Assets/Scripts/Editor/RemoveMobileSupportWarningWebBuild.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Editor/UnityPackageScripts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/Assets/Scripts/Editor/UnityPackageScripts.cs -------------------------------------------------------------------------------- /Assets/Scripts/Editor/UnityPackageScripts.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4a85943ee5494b40a0adfea530697402 3 | timeCreated: 1672773733 -------------------------------------------------------------------------------- /Assets/Scripts/ObjectSpawnController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/Assets/Scripts/ObjectSpawnController.cs -------------------------------------------------------------------------------- /Assets/Scripts/ObjectSpawnController.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/Assets/Scripts/ObjectSpawnController.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/ObjectSpawner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/Assets/Scripts/ObjectSpawner.cs -------------------------------------------------------------------------------- /Assets/Scripts/ObjectSpawner.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/Assets/Scripts/ObjectSpawner.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/ObjectSpawnerCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/Assets/Scripts/ObjectSpawnerCommands.cs -------------------------------------------------------------------------------- /Assets/Scripts/ObjectSpawnerCommands.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/Assets/Scripts/ObjectSpawnerCommands.cs.meta -------------------------------------------------------------------------------- /Assets/WebGLTemplates.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/Assets/WebGLTemplates.meta -------------------------------------------------------------------------------- /Assets/WebGLTemplates/Develop.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/Assets/WebGLTemplates/Develop.meta -------------------------------------------------------------------------------- /Assets/WebGLTemplates/Develop/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/Assets/WebGLTemplates/Develop/LICENSE -------------------------------------------------------------------------------- /Assets/WebGLTemplates/Develop/LICENSE.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/Assets/WebGLTemplates/Develop/LICENSE.meta -------------------------------------------------------------------------------- /Assets/WebGLTemplates/Develop/debug-console.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/Assets/WebGLTemplates/Develop/debug-console.css -------------------------------------------------------------------------------- /Assets/WebGLTemplates/Develop/debug-console.css.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/Assets/WebGLTemplates/Develop/debug-console.css.meta -------------------------------------------------------------------------------- /Assets/WebGLTemplates/Develop/debug-console.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/Assets/WebGLTemplates/Develop/debug-console.js -------------------------------------------------------------------------------- /Assets/WebGLTemplates/Develop/debug-console.js.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/Assets/WebGLTemplates/Develop/debug-console.js.meta -------------------------------------------------------------------------------- /Assets/WebGLTemplates/Develop/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/Assets/WebGLTemplates/Develop/favicon.ico -------------------------------------------------------------------------------- /Assets/WebGLTemplates/Develop/favicon.ico.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/Assets/WebGLTemplates/Develop/favicon.ico.meta -------------------------------------------------------------------------------- /Assets/WebGLTemplates/Develop/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/Assets/WebGLTemplates/Develop/index.html -------------------------------------------------------------------------------- /Assets/WebGLTemplates/Develop/index.html.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/Assets/WebGLTemplates/Develop/index.html.meta -------------------------------------------------------------------------------- /Assets/WebGLTemplates/Develop/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/Assets/WebGLTemplates/Develop/logo.svg -------------------------------------------------------------------------------- /Assets/WebGLTemplates/Develop/logo.svg.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/Assets/WebGLTemplates/Develop/logo.svg.meta -------------------------------------------------------------------------------- /Assets/WebGLTemplates/Develop/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/Assets/WebGLTemplates/Develop/thumbnail.png -------------------------------------------------------------------------------- /Assets/WebGLTemplates/Develop/thumbnail.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/Assets/WebGLTemplates/Develop/thumbnail.png.meta -------------------------------------------------------------------------------- /Assets/WebGLTemplates/Release.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/Assets/WebGLTemplates/Release.meta -------------------------------------------------------------------------------- /Assets/WebGLTemplates/Release/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/Assets/WebGLTemplates/Release/LICENSE -------------------------------------------------------------------------------- /Assets/WebGLTemplates/Release/LICENSE.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/Assets/WebGLTemplates/Release/LICENSE.meta -------------------------------------------------------------------------------- /Assets/WebGLTemplates/Release/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/Assets/WebGLTemplates/Release/favicon.ico -------------------------------------------------------------------------------- /Assets/WebGLTemplates/Release/favicon.ico.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/Assets/WebGLTemplates/Release/favicon.ico.meta -------------------------------------------------------------------------------- /Assets/WebGLTemplates/Release/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/Assets/WebGLTemplates/Release/index.html -------------------------------------------------------------------------------- /Assets/WebGLTemplates/Release/index.html.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/Assets/WebGLTemplates/Release/index.html.meta -------------------------------------------------------------------------------- /Assets/WebGLTemplates/Release/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/Assets/WebGLTemplates/Release/logo.svg -------------------------------------------------------------------------------- /Assets/WebGLTemplates/Release/logo.svg.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/Assets/WebGLTemplates/Release/logo.svg.meta -------------------------------------------------------------------------------- /Assets/WebGLTemplates/Release/pretty-console.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/Assets/WebGLTemplates/Release/pretty-console.js -------------------------------------------------------------------------------- /Assets/WebGLTemplates/Release/pretty-console.js.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/Assets/WebGLTemplates/Release/pretty-console.js.meta -------------------------------------------------------------------------------- /Assets/WebGLTemplates/Release/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/Assets/WebGLTemplates/Release/thumbnail.png -------------------------------------------------------------------------------- /Assets/WebGLTemplates/Release/thumbnail.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/Assets/WebGLTemplates/Release/thumbnail.png.meta -------------------------------------------------------------------------------- /Configuration/2019/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/Configuration/2019/.htaccess -------------------------------------------------------------------------------- /Configuration/2020/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/Configuration/2020/.htaccess -------------------------------------------------------------------------------- /Documentation/ChangeCompressionToGzip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/Documentation/ChangeCompressionToGzip.png -------------------------------------------------------------------------------- /Documentation/DebugConsole.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/Documentation/DebugConsole.png -------------------------------------------------------------------------------- /Documentation/UnityRichTextSupport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/Documentation/UnityRichTextSupport.png -------------------------------------------------------------------------------- /Documentation/UpgradeUnityGithubAction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/Documentation/UpgradeUnityGithubAction.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/LICENSE -------------------------------------------------------------------------------- /Packages/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/Packages/manifest.json -------------------------------------------------------------------------------- /Packages/packages-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/Packages/packages-lock.json -------------------------------------------------------------------------------- /ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/MemorySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/ProjectSettings/MemorySettings.asset -------------------------------------------------------------------------------- /ProjectSettings/MultiplayerManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/ProjectSettings/MultiplayerManager.asset -------------------------------------------------------------------------------- /ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /ProjectSettings/PackageManagerSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/ProjectSettings/PackageManagerSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/ProjectSettings/PresetManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/ProjectSettings/ProjectVersion.txt -------------------------------------------------------------------------------- /ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ShaderGraphSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/ProjectSettings/ShaderGraphSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/ProjectSettings/VFXManager.asset -------------------------------------------------------------------------------- /ProjectSettings/VersionControlSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/ProjectSettings/VersionControlSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/ProjectSettings/XRSettings.asset -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/README.md -------------------------------------------------------------------------------- /preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesDeml/UnityWebGL-LoadingTest/HEAD/preview.png -------------------------------------------------------------------------------- /webgl_sharing: -------------------------------------------------------------------------------- 1 | 6123f8f911e5d6020845edb3 --------------------------------------------------------------------------------