├── .config └── dotnet-tools.json ├── .gitattributes ├── .github └── workflows │ └── unity-build.yml ├── .gitignore ├── .utmp └── RelWithDebInfo │ ├── 571271i6 │ ├── armeabi-v7a │ │ ├── .cmake │ │ │ └── api │ │ │ │ └── v1 │ │ │ │ ├── query │ │ │ │ └── client-agp │ │ │ │ │ ├── cache-v2 │ │ │ │ │ ├── cmakeFiles-v1 │ │ │ │ │ └── codemodel-v2 │ │ │ │ └── reply │ │ │ │ ├── cache-v2-854892627855759e6caa.json │ │ │ │ ├── cmakeFiles-v1-13b64d3350b5950295ef.json │ │ │ │ ├── codemodel-v2-7ceca2ea39b7c50f1e82.json │ │ │ │ ├── directory-.-RelWithDebInfo-d0094a50bb2071803777.json │ │ │ │ ├── directory-FramePacing-RelWithDebInfo-7f9c8865fd027a154c90.json │ │ │ │ ├── index-2025-07-07T09-54-12-0874.json │ │ │ │ └── target-swappywrapper-RelWithDebInfo-4d4449808dca4292a5b7.json │ │ ├── .ninja_deps │ │ ├── .ninja_log │ │ ├── CMakeCache.txt │ │ ├── CMakeFiles │ │ │ ├── 3.22.1-g37088a8-dirty │ │ │ │ ├── CMakeCCompiler.cmake │ │ │ │ ├── CMakeCXXCompiler.cmake │ │ │ │ ├── CMakeDetermineCompilerABI_C.bin │ │ │ │ ├── CMakeDetermineCompilerABI_CXX.bin │ │ │ │ ├── CMakeSystem.cmake │ │ │ │ ├── CompilerIdC │ │ │ │ │ ├── CMakeCCompilerId.c │ │ │ │ │ └── CMakeCCompilerId.o │ │ │ │ └── CompilerIdCXX │ │ │ │ │ ├── CMakeCXXCompilerId.cpp │ │ │ │ │ └── CMakeCXXCompilerId.o │ │ │ ├── CMakeOutput.log │ │ │ ├── TargetDirectories.txt │ │ │ ├── cmake.check_cache │ │ │ └── rules.ninja │ │ ├── FramePacing │ │ │ ├── CMakeFiles │ │ │ │ └── swappywrapper.dir │ │ │ │ │ └── UnitySwappyWrapper.cpp.o │ │ │ └── cmake_install.cmake │ │ ├── android_gradle_build.json │ │ ├── build.ninja │ │ ├── cmake_install.cmake │ │ ├── compile_commands.json │ │ ├── compile_commands.json.bin │ │ ├── metadata_generation_command.txt │ │ └── prefab_config.json │ └── prefab │ │ └── armeabi-v7a │ │ ├── prefab-configure │ │ └── lib │ │ │ └── arm-linux-androideabi │ │ │ └── cmake │ │ │ └── games-frame-pacing │ │ │ ├── games-frame-pacingConfig.cmake │ │ │ └── games-frame-pacingConfigVersion.cmake │ │ └── prefab │ │ └── lib │ │ └── arm-linux-androideabi │ │ └── cmake │ │ └── games-frame-pacing │ │ ├── games-frame-pacingConfig.cmake │ │ └── games-frame-pacingConfigVersion.cmake │ └── 6w5a4q29 │ ├── armeabi-v7a │ ├── .cmake │ │ └── api │ │ │ └── v1 │ │ │ ├── query │ │ │ └── client-agp │ │ │ │ ├── cache-v2 │ │ │ │ ├── cmakeFiles-v1 │ │ │ │ └── codemodel-v2 │ │ │ └── reply │ │ │ ├── cache-v2-b0287ab2d17071d06af7.json │ │ │ ├── cmakeFiles-v1-ade586d11ba962ba86a7.json │ │ │ ├── codemodel-v2-79fd60591ea89c1bf851.json │ │ │ ├── directory-.-RelWithDebInfo-d0094a50bb2071803777.json │ │ │ ├── directory-FramePacing-RelWithDebInfo-7f9c8865fd027a154c90.json │ │ │ ├── index-2025-02-25T21-17-57-0873.json │ │ │ └── target-swappywrapper-RelWithDebInfo-07f984050a9f0f024d50.json │ ├── .ninja_deps │ ├── .ninja_log │ ├── CMakeCache.txt │ ├── CMakeFiles │ │ ├── 3.22.1-g37088a8-dirty │ │ │ ├── CMakeCCompiler.cmake │ │ │ ├── CMakeCXXCompiler.cmake │ │ │ ├── CMakeDetermineCompilerABI_C.bin │ │ │ ├── CMakeDetermineCompilerABI_CXX.bin │ │ │ ├── CMakeSystem.cmake │ │ │ ├── CompilerIdC │ │ │ │ ├── CMakeCCompilerId.c │ │ │ │ └── CMakeCCompilerId.o │ │ │ └── CompilerIdCXX │ │ │ │ ├── CMakeCXXCompilerId.cpp │ │ │ │ └── CMakeCXXCompilerId.o │ │ ├── CMakeOutput.log │ │ ├── TargetDirectories.txt │ │ ├── cmake.check_cache │ │ └── rules.ninja │ ├── FramePacing │ │ ├── CMakeFiles │ │ │ └── swappywrapper.dir │ │ │ │ └── UnitySwappyWrapper.cpp.o │ │ └── cmake_install.cmake │ ├── android_gradle_build.json │ ├── build.ninja │ ├── cmake_install.cmake │ ├── compile_commands.json │ ├── compile_commands.json.bin │ ├── metadata_generation_command.txt │ └── prefab_config.json │ └── prefab │ └── armeabi-v7a │ ├── prefab-configure │ └── lib │ │ └── arm-linux-androideabi │ │ └── cmake │ │ └── games-frame-pacing │ │ ├── games-frame-pacingConfig.cmake │ │ └── games-frame-pacingConfigVersion.cmake │ └── prefab │ └── lib │ └── arm-linux-androideabi │ └── cmake │ └── games-frame-pacing │ ├── games-frame-pacingConfig.cmake │ └── games-frame-pacingConfigVersion.cmake ├── Assets ├── Code.meta ├── Code │ ├── Editor.meta │ ├── Editor │ │ ├── GameEditor.asmdef │ │ ├── GameEditor.asmdef.meta │ │ ├── Localization.meta │ │ ├── Localization │ │ │ ├── LocalizationEditorWindow.cs │ │ │ └── LocalizationEditorWindow.cs.meta │ │ ├── SFX.meta │ │ ├── SFX │ │ │ ├── EnumSyncPostCompile.cs │ │ │ ├── EnumSyncPostCompile.cs.meta │ │ │ ├── SoundLibraryEditorWindow.cs │ │ │ ├── SoundLibraryEditorWindow.cs.meta │ │ │ ├── VibrationLibraryEditorWindow.cs │ │ │ └── VibrationLibraryEditorWindow.cs.meta │ │ ├── Save.meta │ │ ├── Save │ │ │ ├── JsonWrapper.cs │ │ │ ├── JsonWrapper.cs.meta │ │ │ ├── SaveConfigExporterWindow.cs │ │ │ ├── SaveConfigExporterWindow.cs.meta │ │ │ ├── ViewGameSavesWindow.cs │ │ │ └── ViewGameSavesWindow.cs.meta │ │ ├── Tests.meta │ │ ├── Tests │ │ │ ├── TestsToolWindow.cs │ │ │ └── TestsToolWindow.cs.meta │ │ ├── TextToTMPConverterEditorWindow.cs │ │ └── TextToTMPConverterEditorWindow.cs.meta │ ├── Extensions.meta │ ├── Extensions │ │ ├── DOTweenTMPExtensions.cs │ │ ├── DOTweenTMPExtensions.cs.meta │ │ ├── DataExtensions.cs │ │ ├── DataExtensions.cs.meta │ │ ├── FunctionalExtensions.cs │ │ ├── FunctionalExtensions.cs.meta │ │ ├── IEmumerableExtentions.cs │ │ ├── IEmumerableExtentions.cs.meta │ │ ├── InputServiceExtensions.cs │ │ ├── InputServiceExtensions.cs.meta │ │ ├── VectorExtensions.cs │ │ └── VectorExtensions.cs.meta │ ├── Game.asmdef │ ├── Game.asmdef.meta │ ├── Infrastructure.meta │ ├── Infrastructure │ │ ├── CoroutineRunner.cs │ │ ├── CoroutineRunner.cs.meta │ │ ├── Editor.meta │ │ ├── Editor │ │ │ ├── Game.Editor.asmdef │ │ │ ├── Game.Editor.asmdef.meta │ │ │ ├── Helper.meta │ │ │ ├── Helper │ │ │ │ ├── MouseUtility.cs │ │ │ │ ├── MouseUtility.cs.meta │ │ │ │ ├── PathHandle.cs │ │ │ │ ├── PathHandle.cs.meta │ │ │ │ ├── ScreenSpacePolyLine.cs │ │ │ │ └── ScreenSpacePolyLine.cs.meta │ │ │ ├── InfrastructureMenuItem.cs │ │ │ ├── InfrastructureMenuItem.cs.meta │ │ │ ├── LevelHolderEditor.cs │ │ │ ├── LevelHolderEditor.cs.meta │ │ │ ├── LevelRandomConfigStaticDataEditor.cs │ │ │ ├── LevelRandomConfigStaticDataEditor.cs.meta │ │ │ ├── PathEditor.cs │ │ │ ├── PathEditor.cs.meta │ │ │ ├── PathSceneToolEditor.cs │ │ │ ├── PathSceneToolEditor.cs.meta │ │ │ ├── StaticDataMenuTool.cs │ │ │ └── StaticDataMenuTool.cs.meta │ │ ├── GameRunner.cs │ │ ├── GameRunner.cs.meta │ │ ├── ICoroutineRunner.cs │ │ ├── ICoroutineRunner.cs.meta │ │ ├── ILoadingCurtain.cs │ │ ├── ILoadingCurtain.cs.meta │ │ ├── ISceneLoader.cs │ │ ├── ISceneLoader.cs.meta │ │ ├── Installers.meta │ │ ├── Installers │ │ │ ├── BootstrapInstaller.cs │ │ │ └── BootstrapInstaller.cs.meta │ │ ├── LoadingCurtain.cs │ │ ├── LoadingCurtain.cs.meta │ │ ├── SceneLoader.cs │ │ ├── SceneLoader.cs.meta │ │ ├── StateMachine.meta │ │ └── StateMachine │ │ │ ├── Game.meta │ │ │ ├── Game │ │ │ ├── GameStateFactory.cs │ │ │ ├── GameStateFactory.cs.meta │ │ │ ├── GameStateMachine.cs │ │ │ ├── GameStateMachine.cs.meta │ │ │ ├── States.meta │ │ │ └── States │ │ │ │ ├── BootstrapAnalyticState.cs │ │ │ │ ├── BootstrapAnalyticState.cs.meta │ │ │ │ ├── BootstrapState.cs │ │ │ │ ├── BootstrapState.cs.meta │ │ │ │ ├── GameLoopState.cs │ │ │ │ ├── GameLoopState.cs.meta │ │ │ │ ├── IExitable.cs │ │ │ │ ├── IExitable.cs.meta │ │ │ │ ├── IGameState.cs │ │ │ │ ├── IGameState.cs.meta │ │ │ │ ├── IPayloadedState.cs │ │ │ │ ├── IPayloadedState.cs.meta │ │ │ │ ├── IState.cs │ │ │ │ ├── IState.cs.meta │ │ │ │ ├── IUpdatable.cs │ │ │ │ ├── IUpdatable.cs.meta │ │ │ │ ├── LoadLevelState.cs │ │ │ │ ├── LoadLevelState.cs.meta │ │ │ │ ├── LoadLevelTestState.cs │ │ │ │ ├── LoadLevelTestState.cs.meta │ │ │ │ ├── LoadMenuState.cs │ │ │ │ ├── LoadMenuState.cs.meta │ │ │ │ ├── LoadProgressState.cs │ │ │ │ ├── LoadProgressState.cs.meta │ │ │ │ ├── PreLoadGameState.cs │ │ │ │ ├── PreLoadGameState.cs.meta │ │ │ │ ├── TypeLoad.cs │ │ │ │ └── TypeLoad.cs.meta │ │ │ ├── IStateFactory.cs │ │ │ ├── IStateFactory.cs.meta │ │ │ ├── IStateInfo.cs │ │ │ ├── IStateInfo.cs.meta │ │ │ ├── IStateMachine.cs │ │ │ ├── IStateMachine.cs.meta │ │ │ ├── MonoBehaviours.meta │ │ │ ├── MonoBehaviours │ │ │ ├── GameStateLoader.cs │ │ │ ├── GameStateLoader.cs.meta │ │ │ ├── StateLoader.cs │ │ │ └── StateLoader.cs.meta │ │ │ ├── PayloadedStateInfo.cs │ │ │ ├── PayloadedStateInfo.cs.meta │ │ │ ├── StateFactory.cs │ │ │ ├── StateFactory.cs.meta │ │ │ ├── StateInfo.cs │ │ │ ├── StateInfo.cs.meta │ │ │ ├── StateMachine.cs │ │ │ └── StateMachine.cs.meta │ ├── Localization.meta │ ├── Localization │ │ ├── Code.meta │ │ ├── Code │ │ │ ├── Locale.cs │ │ │ ├── Locale.cs.meta │ │ │ ├── LocalizeBase.cs │ │ │ ├── LocalizeBase.cs.meta │ │ │ ├── Services.meta │ │ │ ├── Services │ │ │ │ ├── LocalizeLanguageService.meta │ │ │ │ └── LocalizeLanguageService │ │ │ │ │ ├── ILocalizeLanguageService.cs │ │ │ │ │ ├── ILocalizeLanguageService.cs.meta │ │ │ │ │ ├── LocalizeLanguageService.cs │ │ │ │ │ └── LocalizeLanguageService.cs.meta │ │ │ ├── TMP_Localizer.cs │ │ │ ├── TMP_Localizer.cs.meta │ │ │ └── UI.meta │ │ ├── Intro.meta │ │ └── Intro │ │ │ ├── AllText.txt │ │ │ ├── AllText.txt.meta │ │ │ ├── Resources.meta │ │ │ └── Resources │ │ │ ├── Localization.meta │ │ │ └── Localization │ │ │ ├── English.txt │ │ │ ├── English.txt.meta │ │ │ ├── Russian.txt │ │ │ ├── Russian.txt.meta │ │ │ ├── Ukrainian.txt │ │ │ └── Ukrainian.txt.meta │ ├── Logic.meta │ ├── Logic │ │ ├── Collisions.meta │ │ ├── Collisions │ │ │ ├── CollisionObserver.cs │ │ │ ├── CollisionObserver.cs.meta │ │ │ ├── TriggerObserver.cs │ │ │ └── TriggerObserver.cs.meta │ │ ├── ParticleSystemHolder.cs │ │ ├── ParticleSystemHolder.cs.meta │ │ ├── Pools.meta │ │ ├── Pools │ │ │ ├── PoolMono.cs │ │ │ └── PoolMono.cs.meta │ │ ├── Zuma.meta │ │ └── Zuma │ │ │ ├── Balls.meta │ │ │ ├── Balls │ │ │ ├── Ball.cs │ │ │ ├── Ball.cs.meta │ │ │ ├── BallIntersectionTracker.cs │ │ │ ├── BallIntersectionTracker.cs.meta │ │ │ ├── BallMover.cs │ │ │ ├── BallMover.cs.meta │ │ │ ├── BallRotator.cs │ │ │ └── BallRotator.cs.meta │ │ │ ├── Item.cs │ │ │ ├── Item.cs.meta │ │ │ ├── Level.meta │ │ │ ├── Level │ │ │ ├── LevelEnd.cs │ │ │ ├── LevelEnd.cs.meta │ │ │ ├── LevelHolder.cs │ │ │ ├── LevelHolder.cs.meta │ │ │ ├── LevelStart.cs │ │ │ └── LevelStart.cs.meta │ │ │ ├── Players.meta │ │ │ └── Players │ │ │ ├── BezierIntersection.cs │ │ │ ├── BezierIntersection.cs.meta │ │ │ ├── Player.cs │ │ │ ├── Player.cs.meta │ │ │ ├── PlayerAiming.cs │ │ │ ├── PlayerAiming.cs.meta │ │ │ ├── PlayerAnimator.cs │ │ │ ├── PlayerAnimator.cs.meta │ │ │ ├── PlayerShooting.cs │ │ │ └── PlayerShooting.cs.meta │ ├── PathCreation.meta │ ├── PathCreation │ │ ├── Core.meta │ │ ├── Core │ │ │ ├── Runtime.meta │ │ │ ├── Runtime │ │ │ │ ├── Objects.meta │ │ │ │ ├── Objects │ │ │ │ │ ├── BezierPath.cs │ │ │ │ │ ├── BezierPath.cs.meta │ │ │ │ │ ├── EndOfPathInstruction.cs │ │ │ │ │ ├── EndOfPathInstruction.cs.meta │ │ │ │ │ ├── GlobalDisplaySettings.cs │ │ │ │ │ ├── GlobalDisplaySettings.cs.meta │ │ │ │ │ ├── MinMax3D.cs │ │ │ │ │ ├── MinMax3D.cs.meta │ │ │ │ │ ├── PathCreator.cs │ │ │ │ │ ├── PathCreator.cs.meta │ │ │ │ │ ├── PathCreatorData.cs │ │ │ │ │ ├── PathCreatorData.cs.meta │ │ │ │ │ ├── PathSpace.cs │ │ │ │ │ ├── PathSpace.cs.meta │ │ │ │ │ ├── VertexPath.cs │ │ │ │ │ └── VertexPath.cs.meta │ │ │ │ ├── PathCreator.asmdef │ │ │ │ ├── PathCreator.asmdef.meta │ │ │ │ ├── Utility.meta │ │ │ │ └── Utility │ │ │ │ │ ├── CubicBezierUtility.cs │ │ │ │ │ ├── CubicBezierUtility.cs.meta │ │ │ │ │ ├── MathUtility.cs │ │ │ │ │ ├── MathUtility.cs.meta │ │ │ │ │ ├── VertexPathUtility.cs │ │ │ │ │ └── VertexPathUtility.cs.meta │ │ │ ├── Settings.meta │ │ │ └── Settings │ │ │ │ ├── GlobalDisplaySettings.asset │ │ │ │ └── GlobalDisplaySettings.asset.meta │ │ ├── Documentation.meta │ │ ├── Documentation │ │ │ ├── Documentation.pdf │ │ │ └── Documentation.pdf.meta │ │ ├── Examples.meta │ │ └── Examples │ │ │ ├── Materials.meta │ │ │ ├── Materials │ │ │ ├── Black.mat │ │ │ ├── Black.mat.meta │ │ │ ├── Blue.mat │ │ │ ├── Blue.mat.meta │ │ │ ├── Brown.mat │ │ │ ├── Brown.mat.meta │ │ │ ├── Dark Grey.mat │ │ │ ├── Dark Grey.mat.meta │ │ │ ├── Green.mat │ │ │ ├── Green.mat.meta │ │ │ ├── Red.mat │ │ │ ├── Red.mat.meta │ │ │ ├── Road Texture.png │ │ │ ├── Road Texture.png.meta │ │ │ ├── Road Underside.mat │ │ │ ├── Road Underside.mat.meta │ │ │ ├── Road.mat │ │ │ └── Road.mat.meta │ │ │ ├── Prefabs.meta │ │ │ ├── Prefabs │ │ │ ├── Cube.prefab │ │ │ ├── Cube.prefab.meta │ │ │ ├── Follower.prefab │ │ │ ├── Follower.prefab.meta │ │ │ ├── Path.prefab │ │ │ ├── Path.prefab.meta │ │ │ ├── Sphere.prefab │ │ │ └── Sphere.prefab.meta │ │ │ ├── Scenes.meta │ │ │ ├── Scenes │ │ │ ├── Follow Path.unity │ │ │ ├── Follow Path.unity.meta │ │ │ ├── Generate Path.unity │ │ │ ├── Generate Path.unity.meta │ │ │ ├── Object Placement.unity │ │ │ ├── Object Placement.unity.meta │ │ │ ├── Path as Prefab.unity │ │ │ ├── Path as Prefab.unity.meta │ │ │ ├── Path.prefab │ │ │ ├── Path.prefab.meta │ │ │ ├── Road.unity │ │ │ └── Road.unity.meta │ │ │ ├── Scripts.meta │ │ │ └── Scripts │ │ │ ├── GeneratePathExample.cs │ │ │ ├── GeneratePathExample.cs.meta │ │ │ ├── PathCreatorExample.asmdef │ │ │ ├── PathCreatorExample.asmdef.meta │ │ │ ├── PathFollower.cs │ │ │ ├── PathFollower.cs.meta │ │ │ ├── PathPlacer.cs │ │ │ ├── PathPlacer.cs.meta │ │ │ ├── PathSceneTool.cs │ │ │ ├── PathSceneTool.cs.meta │ │ │ ├── PathSpawner.cs │ │ │ ├── PathSpawner.cs.meta │ │ │ ├── RoadMeshCreator.cs │ │ │ └── RoadMeshCreator.cs.meta │ ├── Services.meta │ ├── Services │ │ ├── BallController.meta │ │ ├── BallController │ │ │ ├── AttachingBallChainHandler.cs │ │ │ ├── AttachingBallChainHandler.cs.meta │ │ │ ├── BallChainController.cs │ │ │ ├── BallChainController.cs.meta │ │ │ ├── BallChainDTO.cs │ │ │ ├── BallChainDTO.cs.meta │ │ │ ├── ChainTracker.cs │ │ │ ├── ChainTracker.cs.meta │ │ │ ├── IBallChainController.cs │ │ │ ├── IBallChainController.cs.meta │ │ │ ├── LoseBallChainHandler.cs │ │ │ ├── LoseBallChainHandler.cs.meta │ │ │ ├── MouthChainHandler.cs │ │ │ ├── MouthChainHandler.cs.meta │ │ │ ├── ParticleChainHandler.cs │ │ │ ├── ParticleChainHandler.cs.meta │ │ │ ├── WidgetBallChainProvider.cs │ │ │ ├── WidgetBallChainProvider.cs.meta │ │ │ ├── WinBallChainHandler.cs │ │ │ └── WinBallChainHandler.cs.meta │ │ ├── Factories.meta │ │ ├── Factories │ │ │ ├── Factory.cs │ │ │ ├── Factory.cs.meta │ │ │ ├── Game.meta │ │ │ ├── Game │ │ │ │ ├── GameFactory.cs │ │ │ │ ├── GameFactory.cs.meta │ │ │ │ ├── IGameFactory.cs │ │ │ │ └── IGameFactory.cs.meta │ │ │ ├── ResourcePath.cs │ │ │ ├── ResourcePath.cs.meta │ │ │ ├── UIFactory.meta │ │ │ └── UIFactory │ │ │ │ ├── IUIFactory.cs │ │ │ │ ├── IUIFactory.cs.meta │ │ │ │ ├── UIFactory.cs │ │ │ │ └── UIFactory.cs.meta │ │ ├── Finish.meta │ │ ├── Finish │ │ │ ├── FinishService.cs │ │ │ ├── FinishService.cs.meta │ │ │ ├── IFinishService.cs │ │ │ ├── IFinishService.cs.meta │ │ │ ├── Lose.meta │ │ │ ├── Lose │ │ │ │ ├── ILoseService.cs │ │ │ │ ├── ILoseService.cs.meta │ │ │ │ ├── LoseService.cs │ │ │ │ └── LoseService.cs.meta │ │ │ ├── Win.meta │ │ │ └── Win │ │ │ │ ├── IWinService.cs │ │ │ │ ├── IWinService.cs.meta │ │ │ │ ├── WinService.cs │ │ │ │ └── WinService.cs.meta │ │ ├── Input.meta │ │ ├── Input │ │ │ ├── Device.meta │ │ │ ├── Device │ │ │ │ ├── IInputDevice.cs │ │ │ │ ├── IInputDevice.cs.meta │ │ │ │ ├── MouseInputDevice.cs │ │ │ │ ├── MouseInputDevice.cs.meta │ │ │ │ ├── NullableInputDevice.cs │ │ │ │ ├── NullableInputDevice.cs.meta │ │ │ │ ├── TouchInputDevice.cs │ │ │ │ └── TouchInputDevice.cs.meta │ │ │ ├── IInputService.cs │ │ │ ├── IInputService.cs.meta │ │ │ ├── InputService.cs │ │ │ └── InputService.cs.meta │ │ ├── Levels.meta │ │ ├── Levels │ │ │ ├── ILevelService.cs │ │ │ ├── ILevelService.cs.meta │ │ │ ├── LevelService.cs │ │ │ └── LevelService.cs.meta │ │ ├── LocalProgress.meta │ │ ├── LocalProgress │ │ │ ├── ILevelLocalProgressService.cs │ │ │ ├── ILevelLocalProgressService.cs.meta │ │ │ ├── LevelLocalProgressService.cs │ │ │ └── LevelLocalProgressService.cs.meta │ │ ├── PersistenceProgress.meta │ │ ├── PersistenceProgress │ │ │ ├── Analytic.meta │ │ │ ├── Analytic │ │ │ │ ├── AnalyticsData.cs │ │ │ │ ├── AnalyticsData.cs.meta │ │ │ │ ├── Application.cs │ │ │ │ ├── Application.cs.meta │ │ │ │ ├── User.cs │ │ │ │ └── User.cs.meta │ │ │ ├── IPersistenceProgressService.cs │ │ │ ├── IPersistenceProgressService.cs.meta │ │ │ ├── PersistenceProgressService.cs │ │ │ ├── PersistenceProgressService.cs.meta │ │ │ ├── Player.meta │ │ │ └── Player │ │ │ │ ├── PlayerData.cs │ │ │ │ ├── PlayerData.cs.meta │ │ │ │ ├── PlayerLevelData.cs │ │ │ │ ├── PlayerLevelData.cs.meta │ │ │ │ ├── PlayerSettings.cs │ │ │ │ ├── PlayerSettings.cs.meta │ │ │ │ ├── PlayerTutorialData.cs │ │ │ │ └── PlayerTutorialData.cs.meta │ │ ├── Providers.meta │ │ ├── Providers │ │ │ ├── Balls.meta │ │ │ ├── Balls │ │ │ │ ├── BallProvider.cs │ │ │ │ ├── BallProvider.cs.meta │ │ │ │ ├── IBallProvider.cs │ │ │ │ └── IBallProvider.cs.meta │ │ │ ├── Widgets.meta │ │ │ └── Widgets │ │ │ │ ├── IWidgetProvider.cs │ │ │ │ ├── IWidgetProvider.cs.meta │ │ │ │ ├── WidgetProvider.cs │ │ │ │ └── WidgetProvider.cs.meta │ │ ├── Random.meta │ │ ├── Random │ │ │ ├── IRandomService.cs │ │ │ ├── IRandomService.cs.meta │ │ │ ├── RandomService.cs │ │ │ └── RandomService.cs.meta │ │ ├── SFX.meta │ │ ├── SFX │ │ │ ├── Music.meta │ │ │ ├── Music │ │ │ │ ├── IMusicService.cs │ │ │ │ ├── IMusicService.cs.meta │ │ │ │ ├── MusicService.cs │ │ │ │ ├── MusicService.cs.meta │ │ │ │ ├── MusicType.cs │ │ │ │ └── MusicType.cs.meta │ │ │ ├── Sound.meta │ │ │ ├── Sound │ │ │ │ ├── ISoundService.cs │ │ │ │ ├── ISoundService.cs.meta │ │ │ │ ├── Sound2DType.cs │ │ │ │ ├── Sound2DType.cs.meta │ │ │ │ ├── Sound3DType.cs │ │ │ │ ├── Sound3DType.cs.meta │ │ │ │ ├── SoundService.cs │ │ │ │ └── SoundService.cs.meta │ │ │ ├── StaticData.meta │ │ │ ├── StaticData │ │ │ │ ├── AudioVibrationStaticDataService.cs │ │ │ │ ├── AudioVibrationStaticDataService.cs.meta │ │ │ │ ├── IAudioVibrationStaticDataService.cs │ │ │ │ └── IAudioVibrationStaticDataService.cs.meta │ │ │ ├── Vibration.meta │ │ │ └── Vibration │ │ │ │ ├── IVibrationService.cs │ │ │ │ ├── IVibrationService.cs.meta │ │ │ │ ├── VibrationService.cs │ │ │ │ ├── VibrationService.cs.meta │ │ │ │ ├── VibrationType.cs │ │ │ │ └── VibrationType.cs.meta │ │ ├── SaveLoad.meta │ │ ├── SaveLoad │ │ │ ├── ISaveLoadFacade.cs │ │ │ ├── ISaveLoadFacade.cs.meta │ │ │ ├── ISaveLoadService.cs │ │ │ ├── ISaveLoadService.cs.meta │ │ │ ├── JsonSaveLoadService.cs │ │ │ ├── JsonSaveLoadService.cs.meta │ │ │ ├── PrefsSaveLoadService.cs │ │ │ ├── PrefsSaveLoadService.cs.meta │ │ │ ├── SaveMethodType.cs │ │ │ ├── SaveMethodType.cs.meta │ │ │ ├── UnifiedSaveLoadFacade.cs │ │ │ ├── UnifiedSaveLoadFacade.cs.meta │ │ │ ├── XmlSaveLoadService.cs │ │ │ └── XmlSaveLoadService.cs.meta │ │ ├── StaticData.meta │ │ ├── StaticData │ │ │ ├── IStaticDataService.cs │ │ │ ├── IStaticDataService.cs.meta │ │ │ ├── StaticDataService.cs │ │ │ └── StaticDataService.cs.meta │ │ ├── Timer.meta │ │ ├── Timer │ │ │ ├── ITimeService.cs │ │ │ ├── ITimeService.cs.meta │ │ │ ├── TimeService.cs │ │ │ └── TimeService.cs.meta │ │ ├── Window.meta │ │ └── Window │ │ │ ├── IWindowService.cs │ │ │ ├── IWindowService.cs.meta │ │ │ ├── WindowService.cs │ │ │ └── WindowService.cs.meta │ ├── StaticData.meta │ ├── StaticData │ │ ├── BalanceStaticData.cs │ │ ├── BalanceStaticData.cs.meta │ │ ├── BallChainStaticData.cs │ │ ├── BallChainStaticData.cs.meta │ │ ├── BuildSettings.cs │ │ ├── BuildSettings.cs.meta │ │ ├── GameStaticData.cs │ │ ├── GameStaticData.cs.meta │ │ ├── Levels.meta │ │ ├── Levels │ │ │ ├── ChapterStaticData.cs │ │ │ ├── ChapterStaticData.cs.meta │ │ │ ├── ItemConfig.cs │ │ │ ├── ItemConfig.cs.meta │ │ │ ├── LevelRandomConfigStaticData.cs │ │ │ ├── LevelRandomConfigStaticData.cs.meta │ │ │ ├── LevelScoreStaticData.cs │ │ │ ├── LevelScoreStaticData.cs.meta │ │ │ ├── LevelStaticData.cs │ │ │ └── LevelStaticData.cs.meta │ │ ├── SFX.meta │ │ ├── SFX │ │ │ ├── SoundData.cs │ │ │ ├── SoundData.cs.meta │ │ │ ├── SoundsData.cs │ │ │ ├── SoundsData.cs.meta │ │ │ ├── VibrationData.cs │ │ │ ├── VibrationData.cs.meta │ │ │ ├── VibrationMode.cs │ │ │ ├── VibrationMode.cs.meta │ │ │ ├── VibrationsData.cs │ │ │ └── VibrationsData.cs.meta │ │ ├── WindowConfig.cs │ │ ├── WindowConfig.cs.meta │ │ ├── WindowStaticData.cs │ │ └── WindowStaticData.cs.meta │ ├── UI.meta │ ├── UI │ │ ├── ButtonScaler.cs │ │ ├── ButtonScaler.cs.meta │ │ ├── Buttons.meta │ │ ├── Buttons │ │ │ ├── FinishButton.cs │ │ │ ├── FinishButton.cs.meta │ │ │ ├── LoadStateButton.cs │ │ │ ├── LoadStateButton.cs.meta │ │ │ ├── RestartButton.cs │ │ │ ├── RestartButton.cs.meta │ │ │ ├── TypeFinish.cs │ │ │ └── TypeFinish.cs.meta │ │ ├── Game.meta │ │ ├── Game │ │ │ ├── GameHud.cs │ │ │ ├── GameHud.cs.meta │ │ │ ├── LevelDisplayer.cs │ │ │ ├── LevelDisplayer.cs.meta │ │ │ ├── ScoreDisplayer.cs │ │ │ ├── ScoreDisplayer.cs.meta │ │ │ ├── StartLevelInfoDisplayer.cs │ │ │ ├── StartLevelInfoDisplayer.cs.meta │ │ │ ├── TimeDisplayer.cs │ │ │ ├── TimeDisplayer.cs.meta │ │ │ ├── TypeLevelDisplayer.cs │ │ │ └── TypeLevelDisplayer.cs.meta │ │ ├── InputZona.cs │ │ ├── InputZona.cs.meta │ │ ├── LookAtCamera.cs │ │ ├── LookAtCamera.cs.meta │ │ ├── Menu.meta │ │ ├── Menu │ │ │ ├── ButtonsNavigation.meta │ │ │ ├── ButtonsNavigation │ │ │ │ ├── ButtonNavigation.cs │ │ │ │ ├── ButtonNavigation.cs.meta │ │ │ │ ├── ButtonNavigationHolder.cs │ │ │ │ └── ButtonNavigationHolder.cs.meta │ │ │ ├── MenuHud.cs │ │ │ ├── MenuHud.cs.meta │ │ │ ├── TypeWindow.cs │ │ │ ├── TypeWindow.cs.meta │ │ │ ├── Windows.meta │ │ │ └── Windows │ │ │ │ ├── BaseWindow.cs │ │ │ │ ├── BaseWindow.cs.meta │ │ │ │ ├── IWindowState.cs │ │ │ │ ├── IWindowState.cs.meta │ │ │ │ ├── Map.meta │ │ │ │ ├── Map │ │ │ │ ├── ButtonSwipeChapter.cs │ │ │ │ ├── ButtonSwipeChapter.cs.meta │ │ │ │ ├── ItemLevel.cs │ │ │ │ ├── ItemLevel.cs.meta │ │ │ │ ├── MapWindow.cs │ │ │ │ ├── MapWindow.cs.meta │ │ │ │ ├── MapWindowState.cs │ │ │ │ ├── MapWindowState.cs.meta │ │ │ │ ├── Navigator.meta │ │ │ │ ├── Navigator │ │ │ │ │ ├── ChapterNavigator.cs │ │ │ │ │ ├── ChapterNavigator.cs.meta │ │ │ │ │ ├── IChapterNavigator.cs │ │ │ │ │ └── IChapterNavigator.cs.meta │ │ │ │ ├── TypeSwipe.cs │ │ │ │ └── TypeSwipe.cs.meta │ │ │ │ ├── Meta.meta │ │ │ │ ├── Meta │ │ │ │ ├── MetaWindow.cs │ │ │ │ ├── MetaWindow.cs.meta │ │ │ │ ├── MetaWindowState.cs │ │ │ │ └── MetaWindowState.cs.meta │ │ │ │ ├── Shop.meta │ │ │ │ ├── Shop │ │ │ │ ├── ShopWindow.cs │ │ │ │ ├── ShopWindow.cs.meta │ │ │ │ ├── ShopWindowState.cs │ │ │ │ └── ShopWindowState.cs.meta │ │ │ │ ├── StateWindow.cs │ │ │ │ ├── StateWindow.cs.meta │ │ │ │ ├── WindowHolder.cs │ │ │ │ └── WindowHolder.cs.meta │ │ ├── TestSFX.meta │ │ ├── TestSFX │ │ │ ├── AudioVolumeTestUI.cs │ │ │ ├── AudioVolumeTestUI.cs.meta │ │ │ ├── Button2DSoundPlayer.cs │ │ │ ├── Button2DSoundPlayer.cs.meta │ │ │ ├── MusicTestButton.cs │ │ │ ├── MusicTestButton.cs.meta │ │ │ ├── TeleportingSoundEmitter.cs │ │ │ ├── TeleportingSoundEmitter.cs.meta │ │ │ ├── VibrationTestButton.cs │ │ │ └── VibrationTestButton.cs.meta │ │ ├── Widget.cs │ │ └── Widget.cs.meta │ ├── Window.meta │ └── Window │ │ ├── Finish.meta │ │ ├── Finish │ │ ├── FinishWindow.cs │ │ ├── FinishWindow.cs.meta │ │ ├── Lose.meta │ │ ├── Lose │ │ │ ├── LoseWindow.cs │ │ │ └── LoseWindow.cs.meta │ │ ├── Win.meta │ │ └── Win │ │ │ ├── BonusWindow.cs │ │ │ ├── BonusWindow.cs.meta │ │ │ ├── WinWindow.cs │ │ │ └── WinWindow.cs.meta │ │ ├── Setting.meta │ │ ├── Setting │ │ ├── ButtonSettings.cs │ │ ├── ButtonSettings.cs.meta │ │ ├── DropDownSwitcherLanguage.cs │ │ ├── DropDownSwitcherLanguage.cs.meta │ │ ├── SettingWindow.cs │ │ ├── SettingWindow.cs.meta │ │ ├── ToggleContainer.cs │ │ ├── ToggleContainer.cs.meta │ │ ├── TypeSettingWindow.cs │ │ └── TypeSettingWindow.cs.meta │ │ ├── WindowTypeId.cs │ │ └── WindowTypeId.cs.meta ├── DefaultVolumeProfile.asset ├── DefaultVolumeProfile.asset.meta ├── Plugins.meta ├── Plugins │ ├── CI.meta │ ├── CI │ │ ├── CI.zip │ │ ├── CI.zip.meta │ │ ├── CIConfig.asset │ │ ├── CIConfig.asset.meta │ │ ├── Editor.meta │ │ ├── Editor │ │ │ ├── Builder.cs │ │ │ ├── Builder.cs.meta │ │ │ ├── CIConfig.cs │ │ │ ├── CIConfig.cs.meta │ │ │ ├── ICSharpCode.SharpZipLib.meta │ │ │ ├── ICSharpCode.SharpZipLib │ │ │ │ ├── BZip2.meta │ │ │ │ ├── BZip2 │ │ │ │ │ ├── BZip2.cs │ │ │ │ │ ├── BZip2.cs.meta │ │ │ │ │ ├── BZip2Constants.cs │ │ │ │ │ ├── BZip2Constants.cs.meta │ │ │ │ │ ├── BZip2Exception.cs │ │ │ │ │ ├── BZip2Exception.cs.meta │ │ │ │ │ ├── BZip2InputStream.cs │ │ │ │ │ ├── BZip2InputStream.cs.meta │ │ │ │ │ ├── BZip2OutputStream.cs │ │ │ │ │ └── BZip2OutputStream.cs.meta │ │ │ │ ├── Checksum.meta │ │ │ │ ├── Checksum │ │ │ │ │ ├── Adler32.cs │ │ │ │ │ ├── Adler32.cs.meta │ │ │ │ │ ├── BZip2Crc.cs │ │ │ │ │ ├── BZip2Crc.cs.meta │ │ │ │ │ ├── Crc32.cs │ │ │ │ │ ├── Crc32.cs.meta │ │ │ │ │ ├── IChecksum.cs │ │ │ │ │ └── IChecksum.cs.meta │ │ │ │ ├── Core.meta │ │ │ │ ├── Core │ │ │ │ │ ├── Exceptions.meta │ │ │ │ │ ├── Exceptions │ │ │ │ │ │ ├── SharpZipBaseException.cs │ │ │ │ │ │ ├── SharpZipBaseException.cs.meta │ │ │ │ │ │ ├── StreamDecodingException.cs │ │ │ │ │ │ ├── StreamDecodingException.cs.meta │ │ │ │ │ │ ├── StreamUnsupportedException.cs │ │ │ │ │ │ ├── StreamUnsupportedException.cs.meta │ │ │ │ │ │ ├── UnexpectedEndOfStreamException.cs │ │ │ │ │ │ ├── UnexpectedEndOfStreamException.cs.meta │ │ │ │ │ │ ├── ValueOutOfRangeException.cs │ │ │ │ │ │ └── ValueOutOfRangeException.cs.meta │ │ │ │ │ ├── FileSystemScanner.cs │ │ │ │ │ ├── FileSystemScanner.cs.meta │ │ │ │ │ ├── INameTransform.cs │ │ │ │ │ ├── INameTransform.cs.meta │ │ │ │ │ ├── IScanFilter.cs │ │ │ │ │ ├── IScanFilter.cs.meta │ │ │ │ │ ├── InvalidNameException.cs │ │ │ │ │ ├── InvalidNameException.cs.meta │ │ │ │ │ ├── NameFilter.cs │ │ │ │ │ ├── NameFilter.cs.meta │ │ │ │ │ ├── PathFilter.cs │ │ │ │ │ ├── PathFilter.cs.meta │ │ │ │ │ ├── StreamUtils.cs │ │ │ │ │ ├── StreamUtils.cs.meta │ │ │ │ │ ├── WindowsPathUtils.cs │ │ │ │ │ └── WindowsPathUtils.cs.meta │ │ │ │ ├── Encryption.meta │ │ │ │ ├── Encryption │ │ │ │ │ ├── PkzipClassic.cs │ │ │ │ │ ├── PkzipClassic.cs.meta │ │ │ │ │ ├── ZipAESStream.cs │ │ │ │ │ ├── ZipAESStream.cs.meta │ │ │ │ │ ├── ZipAESTransform.cs │ │ │ │ │ └── ZipAESTransform.cs.meta │ │ │ │ ├── GZip.meta │ │ │ │ ├── GZip │ │ │ │ │ ├── GZip.cs │ │ │ │ │ ├── GZip.cs.meta │ │ │ │ │ ├── GZipConstants.cs │ │ │ │ │ ├── GZipConstants.cs.meta │ │ │ │ │ ├── GZipException.cs │ │ │ │ │ ├── GZipException.cs.meta │ │ │ │ │ ├── GzipInputStream.cs │ │ │ │ │ ├── GzipInputStream.cs.meta │ │ │ │ │ ├── GzipOutputStream.cs │ │ │ │ │ └── GzipOutputStream.cs.meta │ │ │ │ ├── ICSharpCode.SharpZipLib.snk │ │ │ │ ├── ICSharpCode.SharpZipLib.snk.meta │ │ │ │ ├── Lzw.meta │ │ │ │ ├── Lzw │ │ │ │ │ ├── LzwConstants.cs │ │ │ │ │ ├── LzwConstants.cs.meta │ │ │ │ │ ├── LzwException.cs │ │ │ │ │ ├── LzwException.cs.meta │ │ │ │ │ ├── LzwInputStream.cs │ │ │ │ │ └── LzwInputStream.cs.meta │ │ │ │ ├── Tar.meta │ │ │ │ ├── Tar │ │ │ │ │ ├── InvalidHeaderException.cs │ │ │ │ │ ├── InvalidHeaderException.cs.meta │ │ │ │ │ ├── TarArchive.cs │ │ │ │ │ ├── TarArchive.cs.meta │ │ │ │ │ ├── TarBuffer.cs │ │ │ │ │ ├── TarBuffer.cs.meta │ │ │ │ │ ├── TarEntry.cs │ │ │ │ │ ├── TarEntry.cs.meta │ │ │ │ │ ├── TarException.cs │ │ │ │ │ ├── TarException.cs.meta │ │ │ │ │ ├── TarExtendedHeaderReader.cs │ │ │ │ │ ├── TarExtendedHeaderReader.cs.meta │ │ │ │ │ ├── TarHeader.cs │ │ │ │ │ ├── TarHeader.cs.meta │ │ │ │ │ ├── TarInputStream.cs │ │ │ │ │ ├── TarInputStream.cs.meta │ │ │ │ │ ├── TarOutputStream.cs │ │ │ │ │ └── TarOutputStream.cs.meta │ │ │ │ ├── Zip.meta │ │ │ │ └── Zip │ │ │ │ │ ├── Compression.meta │ │ │ │ │ ├── Compression │ │ │ │ │ ├── Deflater.cs │ │ │ │ │ ├── Deflater.cs.meta │ │ │ │ │ ├── DeflaterConstants.cs │ │ │ │ │ ├── DeflaterConstants.cs.meta │ │ │ │ │ ├── DeflaterEngine.cs │ │ │ │ │ ├── DeflaterEngine.cs.meta │ │ │ │ │ ├── DeflaterHuffman.cs │ │ │ │ │ ├── DeflaterHuffman.cs.meta │ │ │ │ │ ├── DeflaterPending.cs │ │ │ │ │ ├── DeflaterPending.cs.meta │ │ │ │ │ ├── Inflater.cs │ │ │ │ │ ├── Inflater.cs.meta │ │ │ │ │ ├── InflaterDynHeader.cs │ │ │ │ │ ├── InflaterDynHeader.cs.meta │ │ │ │ │ ├── InflaterHuffmanTree.cs │ │ │ │ │ ├── InflaterHuffmanTree.cs.meta │ │ │ │ │ ├── PendingBuffer.cs │ │ │ │ │ ├── PendingBuffer.cs.meta │ │ │ │ │ ├── Streams.meta │ │ │ │ │ └── Streams │ │ │ │ │ │ ├── DeflaterOutputStream.cs │ │ │ │ │ │ ├── DeflaterOutputStream.cs.meta │ │ │ │ │ │ ├── InflaterInputStream.cs │ │ │ │ │ │ ├── InflaterInputStream.cs.meta │ │ │ │ │ │ ├── OutputWindow.cs │ │ │ │ │ │ ├── OutputWindow.cs.meta │ │ │ │ │ │ ├── StreamManipulator.cs │ │ │ │ │ │ └── StreamManipulator.cs.meta │ │ │ │ │ ├── FastZip.cs │ │ │ │ │ ├── FastZip.cs.meta │ │ │ │ │ ├── IEntryFactory.cs │ │ │ │ │ ├── IEntryFactory.cs.meta │ │ │ │ │ ├── WindowsNameTransform.cs │ │ │ │ │ ├── WindowsNameTransform.cs.meta │ │ │ │ │ ├── ZipConstants.cs │ │ │ │ │ ├── ZipConstants.cs.meta │ │ │ │ │ ├── ZipEntry.cs │ │ │ │ │ ├── ZipEntry.cs.meta │ │ │ │ │ ├── ZipEntryFactory.cs │ │ │ │ │ ├── ZipEntryFactory.cs.meta │ │ │ │ │ ├── ZipException.cs │ │ │ │ │ ├── ZipException.cs.meta │ │ │ │ │ ├── ZipExtraData.cs │ │ │ │ │ ├── ZipExtraData.cs.meta │ │ │ │ │ ├── ZipFile.cs │ │ │ │ │ ├── ZipFile.cs.meta │ │ │ │ │ ├── ZipHelperStream.cs │ │ │ │ │ ├── ZipHelperStream.cs.meta │ │ │ │ │ ├── ZipInputStream.cs │ │ │ │ │ ├── ZipInputStream.cs.meta │ │ │ │ │ ├── ZipNameTransform.cs │ │ │ │ │ ├── ZipNameTransform.cs.meta │ │ │ │ │ ├── ZipOutputStream.cs │ │ │ │ │ ├── ZipOutputStream.cs.meta │ │ │ │ │ ├── ZipStrings.cs │ │ │ │ │ └── ZipStrings.cs.meta │ │ │ ├── IOSBuildPostprocessor.cs │ │ │ ├── IOSBuildPostprocessor.cs.meta │ │ │ ├── Installer.cs │ │ │ ├── Installer.cs.meta │ │ │ ├── Navigator.cs │ │ │ └── Navigator.cs.meta │ │ ├── Readme.md │ │ └── Readme.md.meta │ ├── Demigiant.meta │ ├── Demigiant │ │ ├── DOTween.meta │ │ ├── DOTween │ │ │ ├── DOTween.XML │ │ │ ├── DOTween.XML.meta │ │ │ ├── DOTween.dll │ │ │ ├── DOTween.dll.mdb │ │ │ ├── DOTween.dll.meta │ │ │ ├── DOTween43.dll │ │ │ ├── DOTween43.dll.mdb │ │ │ ├── DOTween43.dll.meta │ │ │ ├── DOTween43.xml │ │ │ ├── DOTween43.xml.meta │ │ │ ├── DOTween46.dll │ │ │ ├── DOTween46.dll.mdb │ │ │ ├── DOTween46.dll.meta │ │ │ ├── DOTween46.xml │ │ │ ├── DOTween46.xml.meta │ │ │ ├── DOTween50.dll │ │ │ ├── DOTween50.dll.mdb │ │ │ ├── DOTween50.dll.meta │ │ │ ├── DOTween50.xml │ │ │ ├── DOTween50.xml.meta │ │ │ ├── Editor.meta │ │ │ ├── Editor │ │ │ │ ├── DOTweenEditor.XML │ │ │ │ ├── DOTweenEditor.XML.meta │ │ │ │ ├── DOTweenEditor.dll │ │ │ │ ├── DOTweenEditor.dll.mdb │ │ │ │ ├── DOTweenEditor.dll.meta │ │ │ │ ├── Imgs.meta │ │ │ │ └── Imgs │ │ │ │ │ ├── DOTweenIcon.png │ │ │ │ │ ├── DOTweenIcon.png.meta │ │ │ │ │ ├── Footer.png │ │ │ │ │ ├── Footer.png.meta │ │ │ │ │ ├── Footer_dark.png │ │ │ │ │ ├── Footer_dark.png.meta │ │ │ │ │ ├── Header.jpg │ │ │ │ │ └── Header.jpg.meta │ │ │ ├── readme.txt │ │ │ └── readme.txt.meta │ │ ├── DOTweenPro Examples.meta │ │ ├── DOTweenPro Examples │ │ │ ├── DOTweenAnimation_Advanced.unity │ │ │ ├── DOTweenAnimation_Advanced.unity.meta │ │ │ ├── DOTweenAnimation_Basics.unity │ │ │ ├── DOTweenAnimation_Basics.unity.meta │ │ │ ├── DOTweenPath.unity │ │ │ ├── DOTweenPath.unity.meta │ │ │ ├── Examples Assets.meta │ │ │ └── Examples Assets │ │ │ │ ├── dotweenpro_logo.png │ │ │ │ └── dotweenpro_logo.png.meta │ │ ├── DOTweenPro.meta │ │ ├── DOTweenPro │ │ │ ├── DOTweenAnimation.cs │ │ │ ├── DOTweenAnimation.cs.meta │ │ │ ├── DOTweenPro.XML │ │ │ ├── DOTweenPro.XML.meta │ │ │ ├── DOTweenPro.dll │ │ │ ├── DOTweenPro.dll.mdb │ │ │ ├── DOTweenPro.dll.meta │ │ │ ├── Editor.meta │ │ │ ├── Editor │ │ │ │ ├── DOTweenAnimationInspector.cs │ │ │ │ ├── DOTweenAnimationInspector.cs.meta │ │ │ │ ├── DOTweenProEditor.XML │ │ │ │ ├── DOTweenProEditor.XML.meta │ │ │ │ ├── DOTweenProEditor.dll │ │ │ │ ├── DOTweenProEditor.dll.mdb │ │ │ │ └── DOTweenProEditor.dll.meta │ │ │ ├── readme.txt │ │ │ └── readme.txt.meta │ │ ├── DemiLib.meta │ │ ├── DemiLib │ │ │ ├── Core.meta │ │ │ └── Core │ │ │ │ ├── DemiLib.dll │ │ │ │ ├── DemiLib.dll.mdb │ │ │ │ ├── DemiLib.dll.meta │ │ │ │ ├── DemiLib.xml │ │ │ │ ├── DemiLib.xml.meta │ │ │ │ ├── Editor.meta │ │ │ │ └── Editor │ │ │ │ ├── DemiEditor.dll │ │ │ │ ├── DemiEditor.dll.mdb │ │ │ │ ├── DemiEditor.dll.meta │ │ │ │ ├── DemiEditor.xml │ │ │ │ ├── DemiEditor.xml.meta │ │ │ │ ├── Imgs.meta │ │ │ │ └── Imgs │ │ │ │ ├── blackSquare.png │ │ │ │ ├── blackSquare.png.meta │ │ │ │ ├── blackSquareAlpha10.png │ │ │ │ ├── blackSquareAlpha10.png.meta │ │ │ │ ├── blackSquareAlpha15.png │ │ │ │ ├── blackSquareAlpha15.png.meta │ │ │ │ ├── blackSquareAlpha25.png │ │ │ │ ├── blackSquareAlpha25.png.meta │ │ │ │ ├── blackSquareAlpha50.png │ │ │ │ ├── blackSquareAlpha50.png.meta │ │ │ │ ├── blackSquareAlpha80.png │ │ │ │ ├── blackSquareAlpha80.png.meta │ │ │ │ ├── blueSquare.png │ │ │ │ ├── blueSquare.png.meta │ │ │ │ ├── circle.png │ │ │ │ ├── circle.png.meta │ │ │ │ ├── greenSquare.png │ │ │ │ ├── greenSquare.png.meta │ │ │ │ ├── grid_bright.png │ │ │ │ ├── grid_bright.png.meta │ │ │ │ ├── grid_dark.png │ │ │ │ ├── grid_dark.png.meta │ │ │ │ ├── ico_alert.png │ │ │ │ ├── ico_alert.png.meta │ │ │ │ ├── ico_alignB.png │ │ │ │ ├── ico_alignB.png.meta │ │ │ │ ├── ico_alignBC.png │ │ │ │ ├── ico_alignBC.png.meta │ │ │ │ ├── ico_alignBL.png │ │ │ │ ├── ico_alignBL.png.meta │ │ │ │ ├── ico_alignBR.png │ │ │ │ ├── ico_alignBR.png.meta │ │ │ │ ├── ico_alignCC.png │ │ │ │ ├── ico_alignCC.png.meta │ │ │ │ ├── ico_alignCL.png │ │ │ │ ├── ico_alignCL.png.meta │ │ │ │ ├── ico_alignCR.png │ │ │ │ ├── ico_alignCR.png.meta │ │ │ │ ├── ico_alignHC.png │ │ │ │ ├── ico_alignHC.png.meta │ │ │ │ ├── ico_alignL.png │ │ │ │ ├── ico_alignL.png.meta │ │ │ │ ├── ico_alignR.png │ │ │ │ ├── ico_alignR.png.meta │ │ │ │ ├── ico_alignT.png │ │ │ │ ├── ico_alignT.png.meta │ │ │ │ ├── ico_alignTC.png │ │ │ │ ├── ico_alignTC.png.meta │ │ │ │ ├── ico_alignTL.png │ │ │ │ ├── ico_alignTL.png.meta │ │ │ │ ├── ico_alignTR.png │ │ │ │ ├── ico_alignTR.png.meta │ │ │ │ ├── ico_alignVC.png │ │ │ │ ├── ico_alignVC.png.meta │ │ │ │ ├── ico_camera.png │ │ │ │ ├── ico_camera.png.meta │ │ │ │ ├── ico_camera_border.png │ │ │ │ ├── ico_camera_border.png.meta │ │ │ │ ├── ico_cog.png │ │ │ │ ├── ico_cog.png.meta │ │ │ │ ├── ico_cog_border.png │ │ │ │ ├── ico_cog_border.png.meta │ │ │ │ ├── ico_comment.png │ │ │ │ ├── ico_comment.png.meta │ │ │ │ ├── ico_comment_border.png │ │ │ │ ├── ico_comment_border.png.meta │ │ │ │ ├── ico_delete.png │ │ │ │ ├── ico_delete.png.meta │ │ │ │ ├── ico_end.png │ │ │ │ ├── ico_end.png.meta │ │ │ │ ├── ico_heart.png │ │ │ │ ├── ico_heart.png.meta │ │ │ │ ├── ico_heart_border.png │ │ │ │ ├── ico_heart_border.png.meta │ │ │ │ ├── ico_nodeArrow.png │ │ │ │ ├── ico_nodeArrow.png.meta │ │ │ │ ├── ico_play.png │ │ │ │ ├── ico_play.png.meta │ │ │ │ ├── ico_play_border.png │ │ │ │ ├── ico_play_border.png.meta │ │ │ │ ├── ico_skull.png │ │ │ │ ├── ico_skull.png.meta │ │ │ │ ├── ico_skull_border.png │ │ │ │ ├── ico_skull_border.png.meta │ │ │ │ ├── ico_star.png │ │ │ │ ├── ico_star.png.meta │ │ │ │ ├── ico_star_border.png │ │ │ │ ├── ico_star_border.png.meta │ │ │ │ ├── ico_ui.png │ │ │ │ ├── ico_ui.png.meta │ │ │ │ ├── ico_ui_border.png │ │ │ │ ├── ico_ui_border.png.meta │ │ │ │ ├── orangeSquare.png │ │ │ │ ├── orangeSquare.png.meta │ │ │ │ ├── purpleSquare.png │ │ │ │ ├── purpleSquare.png.meta │ │ │ │ ├── redSquare.png │ │ │ │ ├── redSquare.png.meta │ │ │ │ ├── squareBorder.png │ │ │ │ ├── squareBorder.png.meta │ │ │ │ ├── squareBorderAlpha15.png │ │ │ │ ├── squareBorderAlpha15.png.meta │ │ │ │ ├── squareBorderCurved.png │ │ │ │ ├── squareBorderCurved.png.meta │ │ │ │ ├── squareBorderCurvedAlpha.png │ │ │ │ ├── squareBorderCurvedAlpha.png.meta │ │ │ │ ├── squareBorderCurvedEmpty.png │ │ │ │ ├── squareBorderCurvedEmpty.png.meta │ │ │ │ ├── squareBorderCurvedEmpty02.png │ │ │ │ ├── squareBorderCurvedEmpty02.png.meta │ │ │ │ ├── squareBorderCurvedEmptyThick.png │ │ │ │ ├── squareBorderCurvedEmptyThick.png.meta │ │ │ │ ├── squareBorderCurved_darkBordersAlpha.png │ │ │ │ ├── squareBorderCurved_darkBordersAlpha.png.meta │ │ │ │ ├── squareBorderEmpty.png │ │ │ │ ├── squareBorderEmpty.png.meta │ │ │ │ ├── squareBorderEmpty01.png │ │ │ │ ├── squareBorderEmpty01.png.meta │ │ │ │ ├── squareBorderEmpty02.png │ │ │ │ ├── squareBorderEmpty02.png.meta │ │ │ │ ├── squareBorderEmpty03.png │ │ │ │ ├── squareBorderEmpty03.png.meta │ │ │ │ ├── squareBorderThickEmpty.png │ │ │ │ ├── squareBorderThickEmpty.png.meta │ │ │ │ ├── squareBorderThickerEmpty.png │ │ │ │ ├── squareBorderThickerEmpty.png.meta │ │ │ │ ├── squareCorners03.png │ │ │ │ ├── squareCorners03.png.meta │ │ │ │ ├── squareCornersEmpty02.png │ │ │ │ ├── squareCornersEmpty02.png.meta │ │ │ │ ├── whiteDot.png │ │ │ │ ├── whiteDot.png.meta │ │ │ │ ├── whiteDot_darkBorder.png │ │ │ │ ├── whiteDot_darkBorder.png.meta │ │ │ │ ├── whiteDot_whiteBorderAlpha.png │ │ │ │ ├── whiteDot_whiteBorderAlpha.png.meta │ │ │ │ ├── whiteSquare.png │ │ │ │ ├── whiteSquare.png.meta │ │ │ │ ├── whiteSquareAlpha10.png │ │ │ │ ├── whiteSquareAlpha10.png.meta │ │ │ │ ├── whiteSquareAlpha15.png │ │ │ │ ├── whiteSquareAlpha15.png.meta │ │ │ │ ├── whiteSquareAlpha25.png │ │ │ │ ├── whiteSquareAlpha25.png.meta │ │ │ │ ├── whiteSquareAlpha50.png │ │ │ │ ├── whiteSquareAlpha50.png.meta │ │ │ │ ├── whiteSquareAlpha80.png │ │ │ │ ├── whiteSquareAlpha80.png.meta │ │ │ │ ├── whiteSquare_fadeOut_bt.png │ │ │ │ ├── whiteSquare_fadeOut_bt.png.meta │ │ │ │ ├── yellowSquare.png │ │ │ │ └── yellowSquare.png.meta │ │ ├── readme_DOTweenPro.txt │ │ └── readme_DOTweenPro.txt.meta │ ├── ParticleEffectForUGUI.meta │ ├── ParticleEffectForUGUI │ │ ├── ParticleEffectForUGUI-main.meta │ │ └── ParticleEffectForUGUI-main │ │ │ ├── .releaserc.json │ │ │ ├── CHANGELOG.md │ │ │ ├── CHANGELOG.md.meta │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── CODE_OF_CONDUCT.md.meta │ │ │ ├── CONTRIBUTING.md │ │ │ ├── CONTRIBUTING.md.meta │ │ │ ├── Editor.meta │ │ │ ├── Editor │ │ │ ├── AnimatablePropertyEditor.cs │ │ │ ├── AnimatablePropertyEditor.cs.meta │ │ │ ├── Coffee.UIParticle.Editor.asmdef │ │ │ ├── Coffee.UIParticle.Editor.asmdef.meta │ │ │ ├── UIParticleEditor.cs │ │ │ ├── UIParticleEditor.cs.meta │ │ │ ├── UIParticleMenu.cs │ │ │ └── UIParticleMenu.cs.meta │ │ │ ├── Icons.meta │ │ │ ├── Icons │ │ │ ├── UIParticleIcon.png │ │ │ └── UIParticleIcon.png.meta │ │ │ ├── LICENSE.md │ │ │ ├── LICENSE.md.meta │ │ │ ├── README.md │ │ │ ├── README.md.meta │ │ │ ├── Runtime.meta │ │ │ ├── Runtime │ │ │ ├── AnimatableProperty.cs │ │ │ ├── AnimatableProperty.cs.meta │ │ │ ├── Coffee.UIParticle.asmdef │ │ │ ├── Coffee.UIParticle.asmdef.meta │ │ │ ├── ModifiedMaterial.cs │ │ │ ├── ModifiedMaterial.cs.meta │ │ │ ├── UIParticle.cs │ │ │ ├── UIParticle.cs.meta │ │ │ ├── UIParticleAttractor.cs │ │ │ ├── UIParticleAttractor.cs.meta │ │ │ ├── UIParticleRenderer.cs │ │ │ ├── UIParticleRenderer.cs.meta │ │ │ ├── UIParticleUpdater.cs │ │ │ ├── UIParticleUpdater.cs.meta │ │ │ ├── Utils.cs │ │ │ └── Utils.cs.meta │ │ │ ├── Shaders.meta │ │ │ ├── Shaders │ │ │ ├── UIAdditive.mat │ │ │ ├── UIAdditive.mat.meta │ │ │ ├── UIAdditive.shader │ │ │ └── UIAdditive.shader.meta │ │ │ ├── package.json │ │ │ └── package.json.meta │ ├── Sirenix.meta │ ├── Sirenix │ │ ├── Assemblies.meta │ │ ├── Assemblies │ │ │ ├── NoEditor.meta │ │ │ ├── NoEditor │ │ │ │ ├── Sirenix.Serialization.dll │ │ │ │ ├── Sirenix.Serialization.dll.meta │ │ │ │ ├── Sirenix.Utilities.dll │ │ │ │ └── Sirenix.Utilities.dll.meta │ │ │ ├── NoEmitAndNoEditor.meta │ │ │ ├── NoEmitAndNoEditor │ │ │ │ ├── Sirenix.Serialization.dll │ │ │ │ ├── Sirenix.Serialization.dll.meta │ │ │ │ ├── Sirenix.Utilities.dll │ │ │ │ └── Sirenix.Utilities.dll.meta │ │ │ ├── Sirenix.OdinInspector.Attributes.dll │ │ │ ├── Sirenix.OdinInspector.Attributes.dll.meta │ │ │ ├── Sirenix.OdinInspector.Attributes.xml │ │ │ ├── Sirenix.OdinInspector.Attributes.xml.meta │ │ │ ├── Sirenix.OdinInspector.Editor.dll │ │ │ ├── Sirenix.OdinInspector.Editor.dll.meta │ │ │ ├── Sirenix.OdinInspector.Editor.xml │ │ │ ├── Sirenix.OdinInspector.Editor.xml.meta │ │ │ ├── Sirenix.Reflection.Editor.dll │ │ │ ├── Sirenix.Reflection.Editor.dll.meta │ │ │ ├── Sirenix.Serialization.Config.dll │ │ │ ├── Sirenix.Serialization.Config.dll.meta │ │ │ ├── Sirenix.Serialization.Config.xml │ │ │ ├── Sirenix.Serialization.Config.xml.meta │ │ │ ├── Sirenix.Serialization.dll │ │ │ ├── Sirenix.Serialization.dll.meta │ │ │ ├── Sirenix.Serialization.xml │ │ │ ├── Sirenix.Serialization.xml.meta │ │ │ ├── Sirenix.Utilities.Editor.dll │ │ │ ├── Sirenix.Utilities.Editor.dll.meta │ │ │ ├── Sirenix.Utilities.Editor.xml │ │ │ ├── Sirenix.Utilities.Editor.xml.meta │ │ │ ├── Sirenix.Utilities.dll │ │ │ ├── Sirenix.Utilities.dll.meta │ │ │ ├── Sirenix.Utilities.xml │ │ │ ├── Sirenix.Utilities.xml.meta │ │ │ ├── link.xml │ │ │ └── link.xml.meta │ │ ├── Demos.meta │ │ ├── Demos │ │ │ ├── Custom Attribute Processors.unitypackage │ │ │ ├── Custom Attribute Processors.unitypackage.meta │ │ │ ├── Custom Drawers.unitypackage │ │ │ ├── Custom Drawers.unitypackage.meta │ │ │ ├── Editor Windows.unitypackage │ │ │ ├── Editor Windows.unitypackage.meta │ │ │ ├── Sample - RPG Editor.unitypackage │ │ │ └── Sample - RPG Editor.unitypackage.meta │ │ ├── Odin Inspector.meta │ │ ├── Odin Inspector │ │ │ ├── Assets.meta │ │ │ ├── Assets │ │ │ │ ├── Editor.meta │ │ │ │ └── Editor │ │ │ │ │ ├── Bootstrap License.txt │ │ │ │ │ ├── Bootstrap License.txt.meta │ │ │ │ │ ├── ConfigData.bytes │ │ │ │ │ ├── ConfigData.bytes.meta │ │ │ │ │ ├── OdinPathLookup.asset │ │ │ │ │ ├── OdinPathLookup.asset.meta │ │ │ │ │ ├── SdfIconAtlas.png │ │ │ │ │ └── SdfIconAtlas.png.meta │ │ │ ├── Config.meta │ │ │ ├── Config │ │ │ │ ├── Editor.meta │ │ │ │ ├── Editor │ │ │ │ │ ├── AOTGenerationConfig.asset │ │ │ │ │ ├── AOTGenerationConfig.asset.meta │ │ │ │ │ ├── GeneralDrawerConfig.asset │ │ │ │ │ ├── GeneralDrawerConfig.asset.meta │ │ │ │ │ ├── ImportSettingsConfig.asset │ │ │ │ │ ├── ImportSettingsConfig.asset.meta │ │ │ │ │ ├── InspectorConfig.asset │ │ │ │ │ ├── InspectorConfig.asset.meta │ │ │ │ │ ├── OdinModuleConfig.asset │ │ │ │ │ └── OdinModuleConfig.asset.meta │ │ │ │ ├── Resources.meta │ │ │ │ └── Resources │ │ │ │ │ ├── Sirenix.meta │ │ │ │ │ └── Sirenix │ │ │ │ │ ├── GlobalSerializationConfig.asset │ │ │ │ │ └── GlobalSerializationConfig.asset.meta │ │ │ ├── Modules.meta │ │ │ └── Modules │ │ │ │ ├── Unity.Addressables.data │ │ │ │ ├── Unity.Addressables.data.meta │ │ │ │ ├── Unity.Entities.data │ │ │ │ ├── Unity.Entities.data.meta │ │ │ │ ├── Unity.Localization.data │ │ │ │ ├── Unity.Localization.data.meta │ │ │ │ ├── Unity.Mathematics.data │ │ │ │ ├── Unity.Mathematics.data.meta │ │ │ │ ├── Unity.Mathematics.meta │ │ │ │ └── Unity.Mathematics │ │ │ │ ├── MathematicsDrawers.cs │ │ │ │ ├── MathematicsDrawers.cs.meta │ │ │ │ ├── Sirenix.OdinInspector.Modules.UnityMathematics.asmdef │ │ │ │ ├── Sirenix.OdinInspector.Modules.UnityMathematics.asmdef.meta │ │ │ │ ├── manifest.txt │ │ │ │ └── manifest.txt.meta │ │ ├── Readme.txt │ │ └── Readme.txt.meta │ ├── UniTask.meta │ ├── UniTask │ │ ├── Editor.meta │ │ ├── Editor │ │ │ ├── SplitterGUILayout.cs │ │ │ ├── SplitterGUILayout.cs.meta │ │ │ ├── UniTask.Editor.asmdef │ │ │ ├── UniTask.Editor.asmdef.meta │ │ │ ├── UniTaskTrackerTreeView.cs │ │ │ ├── UniTaskTrackerTreeView.cs.meta │ │ │ ├── UniTaskTrackerWindow.cs │ │ │ └── UniTaskTrackerWindow.cs.meta │ │ ├── Runtime.meta │ │ ├── Runtime │ │ │ ├── AsyncLazy.cs │ │ │ ├── AsyncLazy.cs.meta │ │ │ ├── AsyncReactiveProperty.cs │ │ │ ├── AsyncReactiveProperty.cs.meta │ │ │ ├── AsyncUnit.cs │ │ │ ├── AsyncUnit.cs.meta │ │ │ ├── CancellationTokenEqualityComparer.cs │ │ │ ├── CancellationTokenEqualityComparer.cs.meta │ │ │ ├── CancellationTokenExtensions.cs │ │ │ ├── CancellationTokenExtensions.cs.meta │ │ │ ├── CancellationTokenSourceExtensions.cs │ │ │ ├── CancellationTokenSourceExtensions.cs.meta │ │ │ ├── Channel.cs │ │ │ ├── Channel.cs.meta │ │ │ ├── CompilerServices.meta │ │ │ ├── CompilerServices │ │ │ │ ├── AsyncMethodBuilderAttribute.cs │ │ │ │ ├── AsyncMethodBuilderAttribute.cs.meta │ │ │ │ ├── AsyncUniTaskMethodBuilder.cs │ │ │ │ ├── AsyncUniTaskMethodBuilder.cs.meta │ │ │ │ ├── AsyncUniTaskVoidMethodBuilder.cs │ │ │ │ ├── AsyncUniTaskVoidMethodBuilder.cs.meta │ │ │ │ ├── StateMachineRunner.cs │ │ │ │ └── StateMachineRunner.cs.meta │ │ │ ├── EnumerableAsyncExtensions.cs │ │ │ ├── EnumerableAsyncExtensions.cs.meta │ │ │ ├── EnumeratorAsyncExtensions.cs │ │ │ ├── EnumeratorAsyncExtensions.cs.meta │ │ │ ├── ExceptionExtensions.cs │ │ │ ├── ExceptionExtensions.cs.meta │ │ │ ├── External.meta │ │ │ ├── External │ │ │ │ ├── Addressables.meta │ │ │ │ ├── Addressables │ │ │ │ │ ├── AddressablesAsyncExtensions.cs │ │ │ │ │ ├── AddressablesAsyncExtensions.cs.meta │ │ │ │ │ ├── UniTask.Addressables.asmdef │ │ │ │ │ └── UniTask.Addressables.asmdef.meta │ │ │ │ ├── DOTween.meta │ │ │ │ ├── DOTween │ │ │ │ │ ├── DOTweenAsyncExtensions.cs │ │ │ │ │ ├── DOTweenAsyncExtensions.cs.meta │ │ │ │ │ ├── UniTask.DOTween.asmdef │ │ │ │ │ └── UniTask.DOTween.asmdef.meta │ │ │ │ ├── TextMeshPro.meta │ │ │ │ └── TextMeshPro │ │ │ │ │ ├── TextMeshProAsyncExtensions.InputField.cs │ │ │ │ │ ├── TextMeshProAsyncExtensions.InputField.cs.meta │ │ │ │ │ ├── TextMeshProAsyncExtensions.InputField.tt │ │ │ │ │ ├── TextMeshProAsyncExtensions.InputField.tt.meta │ │ │ │ │ ├── TextMeshProAsyncExtensions.cs │ │ │ │ │ ├── TextMeshProAsyncExtensions.cs.meta │ │ │ │ │ ├── UniTask.TextMeshPro.asmdef │ │ │ │ │ └── UniTask.TextMeshPro.asmdef.meta │ │ │ ├── IUniTaskAsyncEnumerable.cs │ │ │ ├── IUniTaskAsyncEnumerable.cs.meta │ │ │ ├── IUniTaskSource.cs │ │ │ ├── IUniTaskSource.cs.meta │ │ │ ├── Internal.meta │ │ │ ├── Internal │ │ │ │ ├── ArrayPool.cs │ │ │ │ ├── ArrayPool.cs.meta │ │ │ │ ├── ArrayPoolUtil.cs │ │ │ │ ├── ArrayPoolUtil.cs.meta │ │ │ │ ├── ArrayUtil.cs │ │ │ │ ├── ArrayUtil.cs.meta │ │ │ │ ├── ContinuationQueue.cs │ │ │ │ ├── ContinuationQueue.cs.meta │ │ │ │ ├── DiagnosticsExtensions.cs │ │ │ │ ├── DiagnosticsExtensions.cs.meta │ │ │ │ ├── Error.cs │ │ │ │ ├── Error.cs.meta │ │ │ │ ├── MinimumQueue.cs │ │ │ │ ├── MinimumQueue.cs.meta │ │ │ │ ├── PlayerLoopRunner.cs │ │ │ │ ├── PlayerLoopRunner.cs.meta │ │ │ │ ├── PooledDelegate.cs │ │ │ │ ├── PooledDelegate.cs.meta │ │ │ │ ├── RuntimeHelpersAbstraction.cs │ │ │ │ ├── RuntimeHelpersAbstraction.cs.meta │ │ │ │ ├── StatePool.cs │ │ │ │ ├── StatePool.cs.meta │ │ │ │ ├── TaskTracker.cs │ │ │ │ ├── TaskTracker.cs.meta │ │ │ │ ├── UnityEqualityComparer.cs │ │ │ │ ├── UnityEqualityComparer.cs.meta │ │ │ │ ├── UnityWebRequestExtensions.cs │ │ │ │ ├── UnityWebRequestExtensions.cs.meta │ │ │ │ ├── ValueStopwatch.cs │ │ │ │ ├── ValueStopwatch.cs.meta │ │ │ │ ├── WeakDictionary.cs │ │ │ │ └── WeakDictionary.cs.meta │ │ │ ├── Linq.meta │ │ │ ├── Linq │ │ │ │ ├── Aggregate.cs │ │ │ │ ├── Aggregate.cs.meta │ │ │ │ ├── All.cs │ │ │ │ ├── All.cs.meta │ │ │ │ ├── Any.cs │ │ │ │ ├── Any.cs.meta │ │ │ │ ├── AppendPrepend.cs │ │ │ │ ├── AppendPrepend.cs.meta │ │ │ │ ├── AsUniTaskAsyncEnumerable.cs │ │ │ │ ├── AsUniTaskAsyncEnumerable.cs.meta │ │ │ │ ├── AsyncEnumeratorBase.cs │ │ │ │ ├── AsyncEnumeratorBase.cs.meta │ │ │ │ ├── Average.cs │ │ │ │ ├── Average.cs.meta │ │ │ │ ├── Average.tt │ │ │ │ ├── Average.tt.meta │ │ │ │ ├── Buffer.cs │ │ │ │ ├── Buffer.cs.meta │ │ │ │ ├── Cast.cs │ │ │ │ ├── Cast.cs.meta │ │ │ │ ├── CombineLatest.cs │ │ │ │ ├── CombineLatest.cs.meta │ │ │ │ ├── CombineLatest.tt │ │ │ │ ├── CombineLatest.tt.meta │ │ │ │ ├── Concat.cs │ │ │ │ ├── Concat.cs.meta │ │ │ │ ├── Contains.cs │ │ │ │ ├── Contains.cs.meta │ │ │ │ ├── Count.cs │ │ │ │ ├── Count.cs.meta │ │ │ │ ├── Create.cs │ │ │ │ ├── Create.cs.meta │ │ │ │ ├── DefaultIfEmpty.cs │ │ │ │ ├── DefaultIfEmpty.cs.meta │ │ │ │ ├── Distinct.cs │ │ │ │ ├── Distinct.cs.meta │ │ │ │ ├── DistinctUntilChanged.cs │ │ │ │ ├── DistinctUntilChanged.cs.meta │ │ │ │ ├── Do.cs │ │ │ │ ├── Do.cs.meta │ │ │ │ ├── ElementAt.cs │ │ │ │ ├── ElementAt.cs.meta │ │ │ │ ├── Empty.cs │ │ │ │ ├── Empty.cs.meta │ │ │ │ ├── Except.cs │ │ │ │ ├── Except.cs.meta │ │ │ │ ├── First.cs │ │ │ │ ├── First.cs.meta │ │ │ │ ├── ForEach.cs │ │ │ │ ├── ForEach.cs.meta │ │ │ │ ├── GroupBy.cs │ │ │ │ ├── GroupBy.cs.meta │ │ │ │ ├── GroupJoin.cs │ │ │ │ ├── GroupJoin.cs.meta │ │ │ │ ├── Intersect.cs │ │ │ │ ├── Intersect.cs.meta │ │ │ │ ├── Join.cs │ │ │ │ ├── Join.cs.meta │ │ │ │ ├── Last.cs │ │ │ │ ├── Last.cs.meta │ │ │ │ ├── LongCount.cs │ │ │ │ ├── LongCount.cs.meta │ │ │ │ ├── Max.cs │ │ │ │ ├── Max.cs.meta │ │ │ │ ├── Merge.cs │ │ │ │ ├── Merge.cs.meta │ │ │ │ ├── Min.cs │ │ │ │ ├── Min.cs.meta │ │ │ │ ├── MinMax.cs │ │ │ │ ├── MinMax.cs.meta │ │ │ │ ├── MinMax.tt │ │ │ │ ├── MinMax.tt.meta │ │ │ │ ├── Never.cs │ │ │ │ ├── Never.cs.meta │ │ │ │ ├── OfType.cs │ │ │ │ ├── OfType.cs.meta │ │ │ │ ├── OrderBy.cs │ │ │ │ ├── OrderBy.cs.meta │ │ │ │ ├── Pairwise.cs │ │ │ │ ├── Pairwise.cs.meta │ │ │ │ ├── Publish.cs │ │ │ │ ├── Publish.cs.meta │ │ │ │ ├── Queue.cs │ │ │ │ ├── Queue.cs.meta │ │ │ │ ├── Range.cs │ │ │ │ ├── Range.cs.meta │ │ │ │ ├── Repeat.cs │ │ │ │ ├── Repeat.cs.meta │ │ │ │ ├── Return.cs │ │ │ │ ├── Return.cs.meta │ │ │ │ ├── Reverse.cs │ │ │ │ ├── Reverse.cs.meta │ │ │ │ ├── Select.cs │ │ │ │ ├── Select.cs.meta │ │ │ │ ├── SelectMany.cs │ │ │ │ ├── SelectMany.cs.meta │ │ │ │ ├── SequenceEqual.cs │ │ │ │ ├── SequenceEqual.cs.meta │ │ │ │ ├── Single.cs │ │ │ │ ├── Single.cs.meta │ │ │ │ ├── Skip.cs │ │ │ │ ├── Skip.cs.meta │ │ │ │ ├── SkipLast.cs │ │ │ │ ├── SkipLast.cs.meta │ │ │ │ ├── SkipUntil.cs │ │ │ │ ├── SkipUntil.cs.meta │ │ │ │ ├── SkipUntilCanceled.cs │ │ │ │ ├── SkipUntilCanceled.cs.meta │ │ │ │ ├── SkipWhile.cs │ │ │ │ ├── SkipWhile.cs.meta │ │ │ │ ├── Subscribe.cs │ │ │ │ ├── Subscribe.cs.meta │ │ │ │ ├── Sum.cs │ │ │ │ ├── Sum.cs.meta │ │ │ │ ├── Sum.tt │ │ │ │ ├── Sum.tt.meta │ │ │ │ ├── Take.cs │ │ │ │ ├── Take.cs.meta │ │ │ │ ├── TakeLast.cs │ │ │ │ ├── TakeLast.cs.meta │ │ │ │ ├── TakeUntil.cs │ │ │ │ ├── TakeUntil.cs.meta │ │ │ │ ├── TakeUntilCanceled.cs │ │ │ │ ├── TakeUntilCanceled.cs.meta │ │ │ │ ├── TakeWhile.cs │ │ │ │ ├── TakeWhile.cs.meta │ │ │ │ ├── Throw.cs │ │ │ │ ├── Throw.cs.meta │ │ │ │ ├── ToArray.cs │ │ │ │ ├── ToArray.cs.meta │ │ │ │ ├── ToDictionary.cs │ │ │ │ ├── ToDictionary.cs.meta │ │ │ │ ├── ToHashSet.cs │ │ │ │ ├── ToHashSet.cs.meta │ │ │ │ ├── ToList.cs │ │ │ │ ├── ToList.cs.meta │ │ │ │ ├── ToLookup.cs │ │ │ │ ├── ToLookup.cs.meta │ │ │ │ ├── ToObservable.cs │ │ │ │ ├── ToObservable.cs.meta │ │ │ │ ├── ToUniTaskAsyncEnumerable.cs │ │ │ │ ├── ToUniTaskAsyncEnumerable.cs.meta │ │ │ │ ├── UniTask.Linq.asmdef │ │ │ │ ├── UniTask.Linq.asmdef.meta │ │ │ │ ├── Union.cs │ │ │ │ ├── Union.cs.meta │ │ │ │ ├── UnityExtensions.meta │ │ │ │ ├── UnityExtensions │ │ │ │ │ ├── EveryUpdate.cs │ │ │ │ │ ├── EveryUpdate.cs.meta │ │ │ │ │ ├── EveryValueChanged.cs │ │ │ │ │ ├── EveryValueChanged.cs.meta │ │ │ │ │ ├── Timer.cs │ │ │ │ │ └── Timer.cs.meta │ │ │ │ ├── Where.cs │ │ │ │ ├── Where.cs.meta │ │ │ │ ├── Zip.cs │ │ │ │ └── Zip.cs.meta │ │ │ ├── MoveNextSource.cs │ │ │ ├── MoveNextSource.cs.meta │ │ │ ├── PlayerLoopHelper.cs │ │ │ ├── PlayerLoopHelper.cs.meta │ │ │ ├── PlayerLoopTimer.cs │ │ │ ├── PlayerLoopTimer.cs.meta │ │ │ ├── Progress.cs │ │ │ ├── Progress.cs.meta │ │ │ ├── TaskPool.cs │ │ │ ├── TaskPool.cs.meta │ │ │ ├── TimeoutController.cs │ │ │ ├── TimeoutController.cs.meta │ │ │ ├── TriggerEvent.cs │ │ │ ├── TriggerEvent.cs.meta │ │ │ ├── Triggers.meta │ │ │ ├── Triggers │ │ │ │ ├── AsyncAwakeTrigger.cs │ │ │ │ ├── AsyncAwakeTrigger.cs.meta │ │ │ │ ├── AsyncDestroyTrigger.cs │ │ │ │ ├── AsyncDestroyTrigger.cs.meta │ │ │ │ ├── AsyncStartTrigger.cs │ │ │ │ ├── AsyncStartTrigger.cs.meta │ │ │ │ ├── AsyncTriggerBase.cs │ │ │ │ ├── AsyncTriggerBase.cs.meta │ │ │ │ ├── AsyncTriggerExtensions.cs │ │ │ │ ├── AsyncTriggerExtensions.cs.meta │ │ │ │ ├── MonoBehaviourMessagesTriggers.cs │ │ │ │ ├── MonoBehaviourMessagesTriggers.cs.meta │ │ │ │ ├── MonoBehaviourMessagesTriggers.tt │ │ │ │ └── MonoBehaviourMessagesTriggers.tt.meta │ │ │ ├── UniTask.AsValueTask.cs │ │ │ ├── UniTask.AsValueTask.cs.meta │ │ │ ├── UniTask.Bridge.cs │ │ │ ├── UniTask.Bridge.cs.meta │ │ │ ├── UniTask.Delay.cs │ │ │ ├── UniTask.Delay.cs.meta │ │ │ ├── UniTask.Factory.cs │ │ │ ├── UniTask.Factory.cs.meta │ │ │ ├── UniTask.Run.cs │ │ │ ├── UniTask.Run.cs.meta │ │ │ ├── UniTask.Threading.cs │ │ │ ├── UniTask.Threading.cs.meta │ │ │ ├── UniTask.WaitUntil.cs │ │ │ ├── UniTask.WaitUntil.cs.meta │ │ │ ├── UniTask.WhenAll.Generated.cs │ │ │ ├── UniTask.WhenAll.Generated.cs.meta │ │ │ ├── UniTask.WhenAll.Generated.tt │ │ │ ├── UniTask.WhenAll.Generated.tt.meta │ │ │ ├── UniTask.WhenAll.cs │ │ │ ├── UniTask.WhenAll.cs.meta │ │ │ ├── UniTask.WhenAny.Generated.cs │ │ │ ├── UniTask.WhenAny.Generated.cs.meta │ │ │ ├── UniTask.WhenAny.Generated.tt │ │ │ ├── UniTask.WhenAny.Generated.tt.meta │ │ │ ├── UniTask.WhenAny.cs │ │ │ ├── UniTask.WhenAny.cs.meta │ │ │ ├── UniTask.WhenEach.cs │ │ │ ├── UniTask.WhenEach.cs.meta │ │ │ ├── UniTask.asmdef │ │ │ ├── UniTask.asmdef.meta │ │ │ ├── UniTask.cs │ │ │ ├── UniTask.cs.meta │ │ │ ├── UniTaskCompletionSource.cs │ │ │ ├── UniTaskCompletionSource.cs.meta │ │ │ ├── UniTaskExtensions.Shorthand.cs │ │ │ ├── UniTaskExtensions.Shorthand.cs.meta │ │ │ ├── UniTaskExtensions.Shorthand.tt │ │ │ ├── UniTaskExtensions.Shorthand.tt.meta │ │ │ ├── UniTaskExtensions.cs │ │ │ ├── UniTaskExtensions.cs.meta │ │ │ ├── UniTaskObservableExtensions.cs │ │ │ ├── UniTaskObservableExtensions.cs.meta │ │ │ ├── UniTaskScheduler.cs │ │ │ ├── UniTaskScheduler.cs.meta │ │ │ ├── UniTaskSynchronizationContext.cs │ │ │ ├── UniTaskSynchronizationContext.cs.meta │ │ │ ├── UniTaskVoid.cs │ │ │ ├── UniTaskVoid.cs.meta │ │ │ ├── UnityAsyncExtensions.AssetBundleRequestAllAssets.cs │ │ │ ├── UnityAsyncExtensions.AssetBundleRequestAllAssets.cs.meta │ │ │ ├── UnityAsyncExtensions.AsyncGPUReadback.cs │ │ │ ├── UnityAsyncExtensions.AsyncGPUReadback.cs.meta │ │ │ ├── UnityAsyncExtensions.AsyncInstantiate.cs │ │ │ ├── UnityAsyncExtensions.AsyncInstantiate.cs.meta │ │ │ ├── UnityAsyncExtensions.Jobs.cs │ │ │ ├── UnityAsyncExtensions.Jobs.cs.meta │ │ │ ├── UnityAsyncExtensions.MonoBehaviour.cs │ │ │ ├── UnityAsyncExtensions.MonoBehaviour.cs.meta │ │ │ ├── UnityAsyncExtensions.cs │ │ │ ├── UnityAsyncExtensions.cs.meta │ │ │ ├── UnityAsyncExtensions.tt │ │ │ ├── UnityAsyncExtensions.tt.meta │ │ │ ├── UnityAsyncExtensions.uGUI.cs │ │ │ ├── UnityAsyncExtensions.uGUI.cs.meta │ │ │ ├── UnityAwaitableExtensions.cs │ │ │ ├── UnityAwaitableExtensions.cs.meta │ │ │ ├── UnityBindingExtensions.cs │ │ │ ├── UnityBindingExtensions.cs.meta │ │ │ ├── UnityWebRequestException.cs │ │ │ ├── UnityWebRequestException.cs.meta │ │ │ ├── _InternalVisibleTo.cs │ │ │ └── _InternalVisibleTo.cs.meta │ │ ├── package.json │ │ └── package.json.meta │ ├── Zenject.meta │ └── Zenject │ │ ├── LICENSE.txt │ │ ├── LICENSE.txt.meta │ │ ├── OptionalExtras.meta │ │ ├── OptionalExtras │ │ ├── Async.meta │ │ ├── Async │ │ │ ├── Runtime.meta │ │ │ ├── Runtime │ │ │ │ ├── AddressableInject.cs │ │ │ │ ├── AddressableInject.cs.meta │ │ │ │ ├── AsyncDiContainerExtensions.cs │ │ │ │ ├── AsyncDiContainerExtensions.cs.meta │ │ │ │ ├── AsyncInject.cs │ │ │ │ ├── AsyncInject.cs.meta │ │ │ │ ├── Binders.meta │ │ │ │ ├── Binders │ │ │ │ │ ├── AddressableFromBinderGeneric.cs │ │ │ │ │ ├── AddressableFromBinderGeneric.cs.meta │ │ │ │ │ ├── AsyncFromBinderBase.cs │ │ │ │ │ ├── AsyncFromBinderBase.cs.meta │ │ │ │ │ ├── AsyncFromBinderGeneric.cs │ │ │ │ │ ├── AsyncFromBinderGeneric.cs.meta │ │ │ │ │ ├── ConcreteAddressableBinderGeneric.cs │ │ │ │ │ ├── ConcreteAddressableBinderGeneric.cs.meta │ │ │ │ │ ├── ConcreteAddressableIdBinderGeneric.cs │ │ │ │ │ ├── ConcreteAddressableIdBinderGeneric.cs.meta │ │ │ │ │ ├── ConcreteAsyncBinderGeneric.cs │ │ │ │ │ ├── ConcreteAsyncBinderGeneric.cs.meta │ │ │ │ │ ├── ConcreteAsyncIdBinderGeneric.cs │ │ │ │ │ └── ConcreteAsyncIdBinderGeneric.cs.meta │ │ │ │ ├── Extenject-Async.asmdef │ │ │ │ ├── Extenject-Async.asmdef.meta │ │ │ │ ├── Providers.meta │ │ │ │ └── Providers │ │ │ │ │ ├── AddressableProviderSimple.cs │ │ │ │ │ ├── AddressableProviderSimple.cs.meta │ │ │ │ │ ├── AsyncMethodProviderSimple.cs │ │ │ │ │ └── AsyncMethodProviderSimple.cs.meta │ │ │ ├── Tests.meta │ │ │ └── Tests │ │ │ │ ├── Addressable.meta │ │ │ │ ├── Addressable │ │ │ │ ├── Extenject-Addressable-Tests.asmdef │ │ │ │ ├── Extenject-Addressable-Tests.asmdef.meta │ │ │ │ ├── ReadMe.txt │ │ │ │ ├── ReadMe.txt.meta │ │ │ │ ├── TestAddressable.cs │ │ │ │ └── TestAddressable.cs.meta │ │ │ │ ├── Async.meta │ │ │ │ ├── Async │ │ │ │ ├── TestAsync.cs │ │ │ │ └── TestAsync.cs.meta │ │ │ │ ├── Extenject-Async-Tests.asmdef │ │ │ │ └── Extenject-Async-Tests.asmdef.meta │ │ ├── AutoMocking.zip │ │ ├── AutoMocking.zip.meta │ │ ├── AutoSubstitute.zip │ │ ├── AutoSubstitute.zip.meta │ │ ├── MemoryPoolMonitor.meta │ │ ├── MemoryPoolMonitor │ │ │ ├── Editor.meta │ │ │ └── Editor │ │ │ │ ├── DebugWindow.meta │ │ │ │ ├── DebugWindow │ │ │ │ ├── InPlaceStableSort.cs │ │ │ │ ├── InPlaceStableSort.cs.meta │ │ │ │ ├── MpmView.cs │ │ │ │ ├── MpmView.cs.meta │ │ │ │ ├── MpmWindow.cs │ │ │ │ └── MpmWindow.cs.meta │ │ │ │ ├── MpmSettingsInstaller.cs │ │ │ │ ├── MpmSettingsInstaller.cs.meta │ │ │ │ ├── Resources.meta │ │ │ │ ├── Resources │ │ │ │ ├── Installers.meta │ │ │ │ └── Installers │ │ │ │ │ ├── MpmSettingsInstaller.asset │ │ │ │ │ └── MpmSettingsInstaller.asset.meta │ │ │ │ ├── TriangleDown.png │ │ │ │ ├── TriangleDown.png.meta │ │ │ │ ├── TriangleUp.png │ │ │ │ ├── TriangleUp.png.meta │ │ │ │ ├── Zenject-PoolMonitor-Editor.asmdef │ │ │ │ └── Zenject-PoolMonitor-Editor.asmdef.meta │ │ ├── ReflectionBaking.meta │ │ ├── ReflectionBaking │ │ │ ├── Common.meta │ │ │ ├── Common │ │ │ │ ├── CecilExtensions.cs │ │ │ │ ├── CecilExtensions.cs.meta │ │ │ │ ├── ReflectionBakingModuleEditor.cs │ │ │ │ └── ReflectionBakingModuleEditor.cs.meta │ │ │ ├── Lib.meta │ │ │ ├── Lib │ │ │ │ ├── Zenject.ReflectionBaking.Mono.Cecil.Mdb.dll │ │ │ │ ├── Zenject.ReflectionBaking.Mono.Cecil.Mdb.dll.meta │ │ │ │ ├── Zenject.ReflectionBaking.Mono.Cecil.Pdb.dll │ │ │ │ ├── Zenject.ReflectionBaking.Mono.Cecil.Pdb.dll.meta │ │ │ │ ├── Zenject.ReflectionBaking.Mono.Cecil.Rocks.dll │ │ │ │ ├── Zenject.ReflectionBaking.Mono.Cecil.Rocks.dll.meta │ │ │ │ ├── Zenject.ReflectionBaking.Mono.Cecil.dll │ │ │ │ └── Zenject.ReflectionBaking.Mono.Cecil.dll.meta │ │ │ ├── Unity.meta │ │ │ ├── Unity │ │ │ │ ├── AssemblyPathRegistry.cs │ │ │ │ ├── AssemblyPathRegistry.cs.meta │ │ │ │ ├── ReflectionBakingBuildObserver.cs │ │ │ │ ├── ReflectionBakingBuildObserver.cs.meta │ │ │ │ ├── ReflectionBakingInternalUtil.cs │ │ │ │ ├── ReflectionBakingInternalUtil.cs.meta │ │ │ │ ├── ReflectionBakingMenuItems.cs │ │ │ │ ├── ReflectionBakingMenuItems.cs.meta │ │ │ │ ├── UnityAssemblyResolver.cs │ │ │ │ ├── UnityAssemblyResolver.cs.meta │ │ │ │ ├── ZenjectReflectionBakingSettings.cs │ │ │ │ ├── ZenjectReflectionBakingSettings.cs.meta │ │ │ │ ├── ZenjectReflectionBakingSettingsEditor.cs │ │ │ │ └── ZenjectReflectionBakingSettingsEditor.cs.meta │ │ │ ├── Zenject-ReflectionBaking-Editor.asmdef │ │ │ └── Zenject-ReflectionBaking-Editor.asmdef.meta │ │ ├── TestFramework.meta │ │ ├── TestFramework │ │ │ ├── SceneTestFixture.cs │ │ │ ├── SceneTestFixture.cs.meta │ │ │ ├── SceneTestFixtureSceneReference.cs │ │ │ ├── SceneTestFixtureSceneReference.cs.meta │ │ │ ├── ValidateOnlyAttribute.cs │ │ │ ├── ValidateOnlyAttribute.cs.meta │ │ │ ├── Zenject-TestFramework.asmdef │ │ │ ├── Zenject-TestFramework.asmdef.meta │ │ │ ├── ZenjectIntegrationTestFixture.cs │ │ │ ├── ZenjectIntegrationTestFixture.cs.meta │ │ │ ├── ZenjectTestUtil.cs │ │ │ ├── ZenjectTestUtil.cs.meta │ │ │ ├── ZenjectUnitTestFixture.cs │ │ │ └── ZenjectUnitTestFixture.cs.meta │ │ ├── UnitTests.meta │ │ └── UnitTests │ │ │ ├── Editor.meta │ │ │ ├── Editor │ │ │ ├── BindFeatures.meta │ │ │ ├── BindFeatures │ │ │ │ ├── TestBindingInheritanceMethod.cs │ │ │ │ ├── TestBindingInheritanceMethod.cs.meta │ │ │ │ ├── TestConcreteIdentifier.cs │ │ │ │ ├── TestConcreteIdentifier.cs.meta │ │ │ │ ├── TestIfNotBound.cs │ │ │ │ ├── TestIfNotBound.cs.meta │ │ │ │ ├── TestMoveIntoAllSubContainers.cs │ │ │ │ ├── TestMoveIntoAllSubContainers.cs.meta │ │ │ │ ├── TestMoveIntoDirectSubContainers.cs │ │ │ │ ├── TestMoveIntoDirectSubContainers.cs.meta │ │ │ │ ├── TestMultipleContractTypes.cs │ │ │ │ ├── TestMultipleContractTypes.cs.meta │ │ │ │ ├── TestMultipleContractTypes2.cs │ │ │ │ ├── TestMultipleContractTypes2.cs.meta │ │ │ │ ├── TestMultipleContractTypes3.cs │ │ │ │ ├── TestMultipleContractTypes3.cs.meta │ │ │ │ ├── TestNonLazy.cs │ │ │ │ ├── TestNonLazy.cs.meta │ │ │ │ ├── TestRebind.cs │ │ │ │ ├── TestRebind.cs.meta │ │ │ │ ├── TestUnbind.cs │ │ │ │ ├── TestUnbind.cs.meta │ │ │ │ ├── TestWithArguments.cs │ │ │ │ └── TestWithArguments.cs.meta │ │ │ ├── Bindings.meta │ │ │ ├── Bindings │ │ │ │ ├── TestFrom.cs │ │ │ │ ├── TestFrom.cs.meta │ │ │ │ ├── TestFromFactory.cs │ │ │ │ ├── TestFromFactory.cs.meta │ │ │ │ ├── TestFromGetter.cs │ │ │ │ ├── TestFromGetter.cs.meta │ │ │ │ ├── TestFromIFactory.cs │ │ │ │ ├── TestFromIFactory.cs.meta │ │ │ │ ├── TestFromIFactory2.cs │ │ │ │ ├── TestFromIFactory2.cs.meta │ │ │ │ ├── TestFromInstance.cs │ │ │ │ ├── TestFromInstance.cs.meta │ │ │ │ ├── TestFromMethod.cs │ │ │ │ ├── TestFromMethod.cs.meta │ │ │ │ ├── TestFromMethodMultiple.cs │ │ │ │ ├── TestFromMethodMultiple.cs.meta │ │ │ │ ├── TestFromMethodMultipleUntyped.cs │ │ │ │ ├── TestFromMethodMultipleUntyped.cs.meta │ │ │ │ ├── TestFromResolve.cs │ │ │ │ ├── TestFromResolve.cs.meta │ │ │ │ ├── TestFromSubContainerInstaller.cs │ │ │ │ ├── TestFromSubContainerInstaller.cs.meta │ │ │ │ ├── TestFromSubContainerInstance.cs │ │ │ │ ├── TestFromSubContainerInstance.cs.meta │ │ │ │ ├── TestFromSubContainerInstanceGetter.cs │ │ │ │ ├── TestFromSubContainerInstanceGetter.cs.meta │ │ │ │ ├── TestFromSubContainerMethod.cs │ │ │ │ ├── TestFromSubContainerMethod.cs.meta │ │ │ │ ├── TestNonGeneric.cs │ │ │ │ ├── TestNonGeneric.cs.meta │ │ │ │ ├── TestWithKernel.cs │ │ │ │ └── TestWithKernel.cs.meta │ │ │ ├── Conditions.meta │ │ │ ├── Conditions │ │ │ │ ├── TestConditionsBasic.cs │ │ │ │ ├── TestConditionsBasic.cs.meta │ │ │ │ ├── TestConditionsComplex.cs │ │ │ │ ├── TestConditionsComplex.cs.meta │ │ │ │ ├── TestConditionsFieldName.cs │ │ │ │ ├── TestConditionsFieldName.cs.meta │ │ │ │ ├── TestConditionsIdentifier.cs │ │ │ │ ├── TestConditionsIdentifier.cs.meta │ │ │ │ ├── TestConditionsParents.cs │ │ │ │ ├── TestConditionsParents.cs.meta │ │ │ │ ├── TestConditionsTarget.cs │ │ │ │ ├── TestConditionsTarget.cs.meta │ │ │ │ ├── TestConditionsTargetInstance.cs │ │ │ │ ├── TestConditionsTargetInstance.cs.meta │ │ │ │ ├── TestIdentifierTypes.cs │ │ │ │ ├── TestIdentifierTypes.cs.meta │ │ │ │ ├── TestIdentifiers.cs │ │ │ │ └── TestIdentifiers.cs.meta │ │ │ ├── Conventions.meta │ │ │ ├── Conventions │ │ │ │ ├── Foo.cs │ │ │ │ ├── Foo.cs.meta │ │ │ │ ├── FooMore.cs │ │ │ │ ├── FooMore.cs.meta │ │ │ │ ├── TestConvention.cs │ │ │ │ ├── TestConvention.cs.meta │ │ │ │ ├── TestConvention2.cs │ │ │ │ ├── TestConvention2.cs.meta │ │ │ │ ├── TestConventionNames.cs │ │ │ │ └── TestConventionNames.cs.meta │ │ │ ├── Factories.meta │ │ │ ├── Factories │ │ │ │ ├── Bindings.meta │ │ │ │ ├── Bindings │ │ │ │ │ ├── TestFactoryFrom0.cs │ │ │ │ │ ├── TestFactoryFrom0.cs.meta │ │ │ │ │ ├── TestFactoryFrom1.cs │ │ │ │ │ ├── TestFactoryFrom1.cs.meta │ │ │ │ │ ├── TestFactoryFrom5.cs │ │ │ │ │ ├── TestFactoryFrom5.cs.meta │ │ │ │ │ ├── TestFactoryFromFactory0.cs │ │ │ │ │ ├── TestFactoryFromFactory0.cs.meta │ │ │ │ │ ├── TestFactoryFromFactory1.cs │ │ │ │ │ ├── TestFactoryFromFactory1.cs.meta │ │ │ │ │ ├── TestFactoryFromGetter0.cs │ │ │ │ │ ├── TestFactoryFromGetter0.cs.meta │ │ │ │ │ ├── TestFactoryFromInstance0.cs │ │ │ │ │ ├── TestFactoryFromInstance0.cs.meta │ │ │ │ │ ├── TestFactoryFromMethod0.cs │ │ │ │ │ ├── TestFactoryFromMethod0.cs.meta │ │ │ │ │ ├── TestFactoryFromMethod1.cs │ │ │ │ │ ├── TestFactoryFromMethod1.cs.meta │ │ │ │ │ ├── TestFactoryFromResolve0.cs │ │ │ │ │ ├── TestFactoryFromResolve0.cs.meta │ │ │ │ │ ├── TestFactoryFromSubContainerInstaller0.cs │ │ │ │ │ ├── TestFactoryFromSubContainerInstaller0.cs.meta │ │ │ │ │ ├── TestFactoryFromSubContainerInstaller1.cs │ │ │ │ │ ├── TestFactoryFromSubContainerInstaller1.cs.meta │ │ │ │ │ ├── TestFactoryFromSubContainerMethod0.cs │ │ │ │ │ ├── TestFactoryFromSubContainerMethod0.cs.meta │ │ │ │ │ ├── TestFactoryFromSubContainerMethod1.cs │ │ │ │ │ ├── TestFactoryFromSubContainerMethod1.cs.meta │ │ │ │ │ ├── TestFactoryWithArguments.cs │ │ │ │ │ └── TestFactoryWithArguments.cs.meta │ │ │ │ ├── IFactory.meta │ │ │ │ ├── IFactory │ │ │ │ │ ├── TestIFactory.cs │ │ │ │ │ └── TestIFactory.cs.meta │ │ │ │ ├── TestFactory.cs │ │ │ │ └── TestFactory.cs.meta │ │ │ ├── Injection.meta │ │ │ ├── Injection │ │ │ │ ├── TestAllInjectionTypes.cs │ │ │ │ ├── TestAllInjectionTypes.cs.meta │ │ │ │ ├── TestBaseClassPropertyInjection.cs │ │ │ │ ├── TestBaseClassPropertyInjection.cs.meta │ │ │ │ ├── TestCircularDependencies.cs │ │ │ │ ├── TestCircularDependencies.cs.meta │ │ │ │ ├── TestConstructorInjection.cs │ │ │ │ ├── TestConstructorInjection.cs.meta │ │ │ │ ├── TestConstructorInjectionOptional.cs │ │ │ │ ├── TestConstructorInjectionOptional.cs.meta │ │ │ │ ├── TestDuplicateInjection.cs │ │ │ │ ├── TestDuplicateInjection.cs.meta │ │ │ │ ├── TestInjectSources.cs │ │ │ │ ├── TestInjectSources.cs.meta │ │ │ │ ├── TestListInjection.cs │ │ │ │ ├── TestListInjection.cs.meta │ │ │ │ ├── TestNullableValues.cs │ │ │ │ ├── TestNullableValues.cs.meta │ │ │ │ ├── TestParameters.cs │ │ │ │ ├── TestParameters.cs.meta │ │ │ │ ├── TestPostInjectCall.cs │ │ │ │ ├── TestPostInjectCall.cs.meta │ │ │ │ ├── TestPostInjectParameters.cs │ │ │ │ ├── TestPostInjectParameters.cs.meta │ │ │ │ ├── TestPropertyInjection.cs │ │ │ │ ├── TestPropertyInjection.cs.meta │ │ │ │ ├── TestStructInjection.cs │ │ │ │ ├── TestStructInjection.cs.meta │ │ │ │ ├── TestTestOptional.cs │ │ │ │ └── TestTestOptional.cs.meta │ │ │ ├── MemoryPool.meta │ │ │ ├── MemoryPool │ │ │ │ ├── TestArrayPool.cs │ │ │ │ ├── TestArrayPool.cs.meta │ │ │ │ ├── TestDisposeBlock.cs │ │ │ │ ├── TestDisposeBlock.cs.meta │ │ │ │ ├── TestFromPoolableMemoryPoolOne.cs │ │ │ │ ├── TestFromPoolableMemoryPoolOne.cs.meta │ │ │ │ ├── TestFromPoolableMemoryPoolSix.cs │ │ │ │ ├── TestFromPoolableMemoryPoolSix.cs.meta │ │ │ │ ├── TestFromPoolableMemoryPoolValidation.cs │ │ │ │ ├── TestFromPoolableMemoryPoolValidation.cs.meta │ │ │ │ ├── TestFromPoolableMemoryPoolZero.cs │ │ │ │ ├── TestFromPoolableMemoryPoolZero.cs.meta │ │ │ │ ├── TestMemoryPool0.cs │ │ │ │ ├── TestMemoryPool0.cs.meta │ │ │ │ ├── TestMemoryPoolCustomFactory.cs │ │ │ │ ├── TestMemoryPoolCustomFactory.cs.meta │ │ │ │ ├── TestPoolableStaticMemoryPool.cs │ │ │ │ ├── TestPoolableStaticMemoryPool.cs.meta │ │ │ │ ├── TestStaticMemoryPool.cs │ │ │ │ └── TestStaticMemoryPool.cs.meta │ │ │ ├── Other.meta │ │ │ ├── Other │ │ │ │ ├── TestAllocs.cs │ │ │ │ ├── TestAllocs.cs.meta │ │ │ │ ├── TestAsSingle.cs │ │ │ │ ├── TestAsSingle.cs.meta │ │ │ │ ├── TestBindCallbacks.cs │ │ │ │ ├── TestBindCallbacks.cs.meta │ │ │ │ ├── TestCircularDependencies.cs │ │ │ │ ├── TestCircularDependencies.cs.meta │ │ │ │ ├── TestClearCacheProvider.cs │ │ │ │ ├── TestClearCacheProvider.cs.meta │ │ │ │ ├── TestCustomInjectAttribute.cs │ │ │ │ ├── TestCustomInjectAttribute.cs.meta │ │ │ │ ├── TestDecoratorValidation.cs │ │ │ │ ├── TestDecoratorValidation.cs.meta │ │ │ │ ├── TestDecorators.cs │ │ │ │ ├── TestDecorators.cs.meta │ │ │ │ ├── TestFacadeSubContainer.cs │ │ │ │ ├── TestFacadeSubContainer.cs.meta │ │ │ │ ├── TestFactoryMemoryPoolCustomInterface.cs │ │ │ │ ├── TestFactoryMemoryPoolCustomInterface.cs.meta │ │ │ │ ├── TestGenericContract.cs │ │ │ │ ├── TestGenericContract.cs.meta │ │ │ │ ├── TestKeyedFactoryExample.cs │ │ │ │ ├── TestKeyedFactoryExample.cs.meta │ │ │ │ ├── TestLazy.cs │ │ │ │ ├── TestLazy.cs.meta │ │ │ │ ├── TestNestedContainer.cs │ │ │ │ ├── TestNestedContainer.cs.meta │ │ │ │ ├── TestPoolableManager.cs │ │ │ │ ├── TestPoolableManager.cs.meta │ │ │ │ ├── TestResolve.cs │ │ │ │ ├── TestResolve.cs.meta │ │ │ │ ├── TestResolveMany.cs │ │ │ │ ├── TestResolveMany.cs.meta │ │ │ │ ├── TestSubContainers.cs │ │ │ │ ├── TestSubContainers.cs.meta │ │ │ │ ├── TestSubContainers4.cs │ │ │ │ ├── TestSubContainers4.cs.meta │ │ │ │ ├── TestTaskUpdater.cs │ │ │ │ ├── TestTaskUpdater.cs.meta │ │ │ │ ├── TestTestUtil.cs │ │ │ │ ├── TestTestUtil.cs.meta │ │ │ │ ├── TestTransientMockProvider.cs │ │ │ │ ├── TestTransientMockProvider.cs.meta │ │ │ │ ├── TestValidation.cs │ │ │ │ ├── TestValidation.cs.meta │ │ │ │ ├── TestValidationSettings.cs │ │ │ │ ├── TestValidationSettings.cs.meta │ │ │ │ ├── ZenjectProfileTest.cs │ │ │ │ └── ZenjectProfileTest.cs.meta │ │ │ ├── Profiling.meta │ │ │ ├── Profiling │ │ │ │ ├── TestInstantiateApproaches.cs │ │ │ │ └── TestInstantiateApproaches.cs.meta │ │ │ ├── Util.meta │ │ │ ├── Util │ │ │ │ ├── TestListComparer.cs │ │ │ │ └── TestListComparer.cs.meta │ │ │ ├── Zenject-UnitTests-Editor.asmdef │ │ │ └── Zenject-UnitTests-Editor.asmdef.meta │ │ │ ├── ReadMe.txt │ │ │ └── ReadMe.txt.meta │ │ ├── ReadMe.url │ │ ├── ReadMe.url.meta │ │ ├── Source.meta │ │ ├── Source │ │ ├── Binding.meta │ │ ├── Binding │ │ │ ├── BindInfo.meta │ │ │ ├── BindInfo │ │ │ │ ├── BindInfo.cs │ │ │ │ ├── BindInfo.cs.meta │ │ │ │ ├── BindStatement.cs │ │ │ │ ├── BindStatement.cs.meta │ │ │ │ ├── FactoryBindInfo.cs │ │ │ │ ├── FactoryBindInfo.cs.meta │ │ │ │ ├── GameObjectCreationParameters.cs │ │ │ │ ├── GameObjectCreationParameters.cs.meta │ │ │ │ ├── MemoryPoolBindInfo.cs │ │ │ │ └── MemoryPoolBindInfo.cs.meta │ │ │ ├── Binders.meta │ │ │ ├── Binders │ │ │ │ ├── ArgConditionCopyNonLazyBinder.cs │ │ │ │ ├── ArgConditionCopyNonLazyBinder.cs.meta │ │ │ │ ├── ConcreteBinders.meta │ │ │ │ ├── ConcreteBinders │ │ │ │ │ ├── ConcreteBinderGeneric.cs │ │ │ │ │ ├── ConcreteBinderGeneric.cs.meta │ │ │ │ │ ├── ConcreteBinderNonGeneric.cs │ │ │ │ │ ├── ConcreteBinderNonGeneric.cs.meta │ │ │ │ │ ├── ConcreteIdBinderGeneric.cs │ │ │ │ │ ├── ConcreteIdBinderGeneric.cs.meta │ │ │ │ │ ├── ConcreteIdBinderNonGeneric.cs │ │ │ │ │ └── ConcreteIdBinderNonGeneric.cs.meta │ │ │ │ ├── ConcreteIdArgConditionCopyNonLazyBinder.cs │ │ │ │ ├── ConcreteIdArgConditionCopyNonLazyBinder.cs.meta │ │ │ │ ├── ConditionCopyNonLazyBinder.cs │ │ │ │ ├── ConditionCopyNonLazyBinder.cs.meta │ │ │ │ ├── Conventions.meta │ │ │ │ ├── Conventions │ │ │ │ │ ├── ConventionAssemblySelectionBinder.cs │ │ │ │ │ ├── ConventionAssemblySelectionBinder.cs.meta │ │ │ │ │ ├── ConventionBindInfo.cs │ │ │ │ │ ├── ConventionBindInfo.cs.meta │ │ │ │ │ ├── ConventionFilterTypesBinder.cs │ │ │ │ │ ├── ConventionFilterTypesBinder.cs.meta │ │ │ │ │ ├── ConventionSelectTypesBinder.cs │ │ │ │ │ └── ConventionSelectTypesBinder.cs.meta │ │ │ │ ├── CopyNonLazyBinder.cs │ │ │ │ ├── CopyNonLazyBinder.cs.meta │ │ │ │ ├── DefaultParentScopeConcreteIdArgConditionCopyNonLazyBinder.cs │ │ │ │ ├── DefaultParentScopeConcreteIdArgConditionCopyNonLazyBinder.cs.meta │ │ │ │ ├── Factory.meta │ │ │ │ ├── Factory │ │ │ │ │ ├── FactoryArgumentsToChoiceBinder.meta │ │ │ │ │ ├── FactoryArgumentsToChoiceBinder │ │ │ │ │ │ ├── FactoryArgumentsToChoiceBinder0.cs │ │ │ │ │ │ ├── FactoryArgumentsToChoiceBinder0.cs.meta │ │ │ │ │ │ ├── FactoryArgumentsToChoiceBinder1.cs │ │ │ │ │ │ ├── FactoryArgumentsToChoiceBinder1.cs.meta │ │ │ │ │ │ ├── FactoryArgumentsToChoiceBinder10.cs │ │ │ │ │ │ ├── FactoryArgumentsToChoiceBinder10.cs.meta │ │ │ │ │ │ ├── FactoryArgumentsToChoiceBinder2.cs │ │ │ │ │ │ ├── FactoryArgumentsToChoiceBinder2.cs.meta │ │ │ │ │ │ ├── FactoryArgumentsToChoiceBinder3.cs │ │ │ │ │ │ ├── FactoryArgumentsToChoiceBinder3.cs.meta │ │ │ │ │ │ ├── FactoryArgumentsToChoiceBinder4.cs │ │ │ │ │ │ ├── FactoryArgumentsToChoiceBinder4.cs.meta │ │ │ │ │ │ ├── FactoryArgumentsToChoiceBinder5.cs │ │ │ │ │ │ ├── FactoryArgumentsToChoiceBinder5.cs.meta │ │ │ │ │ │ ├── FactoryArgumentsToChoiceBinder6.cs │ │ │ │ │ │ └── FactoryArgumentsToChoiceBinder6.cs.meta │ │ │ │ │ ├── FactoryFromBinder.meta │ │ │ │ │ ├── FactoryFromBinder │ │ │ │ │ │ ├── FactoryFromBinder0.cs │ │ │ │ │ │ ├── FactoryFromBinder0.cs.meta │ │ │ │ │ │ ├── FactoryFromBinder1.cs │ │ │ │ │ │ ├── FactoryFromBinder1.cs.meta │ │ │ │ │ │ ├── FactoryFromBinder10.cs │ │ │ │ │ │ ├── FactoryFromBinder10.cs.meta │ │ │ │ │ │ ├── FactoryFromBinder2.cs │ │ │ │ │ │ ├── FactoryFromBinder2.cs.meta │ │ │ │ │ │ ├── FactoryFromBinder3.cs │ │ │ │ │ │ ├── FactoryFromBinder3.cs.meta │ │ │ │ │ │ ├── FactoryFromBinder4.cs │ │ │ │ │ │ ├── FactoryFromBinder4.cs.meta │ │ │ │ │ │ ├── FactoryFromBinder5.cs │ │ │ │ │ │ ├── FactoryFromBinder5.cs.meta │ │ │ │ │ │ ├── FactoryFromBinder6.cs │ │ │ │ │ │ ├── FactoryFromBinder6.cs.meta │ │ │ │ │ │ ├── SubContainerBinder.meta │ │ │ │ │ │ ├── SubContainerBinder │ │ │ │ │ │ │ ├── FactorySubContainerBinder0.cs │ │ │ │ │ │ │ ├── FactorySubContainerBinder0.cs.meta │ │ │ │ │ │ │ ├── FactorySubContainerBinder1.cs │ │ │ │ │ │ │ ├── FactorySubContainerBinder1.cs.meta │ │ │ │ │ │ │ ├── FactorySubContainerBinder10.cs │ │ │ │ │ │ │ ├── FactorySubContainerBinder10.cs.meta │ │ │ │ │ │ │ ├── FactorySubContainerBinder2.cs │ │ │ │ │ │ │ ├── FactorySubContainerBinder2.cs.meta │ │ │ │ │ │ │ ├── FactorySubContainerBinder3.cs │ │ │ │ │ │ │ ├── FactorySubContainerBinder3.cs.meta │ │ │ │ │ │ │ ├── FactorySubContainerBinder4.cs │ │ │ │ │ │ │ ├── FactorySubContainerBinder4.cs.meta │ │ │ │ │ │ │ ├── FactorySubContainerBinder5.cs │ │ │ │ │ │ │ ├── FactorySubContainerBinder5.cs.meta │ │ │ │ │ │ │ ├── FactorySubContainerBinder6.cs │ │ │ │ │ │ │ ├── FactorySubContainerBinder6.cs.meta │ │ │ │ │ │ │ ├── FactorySubContainerBinderBase.cs │ │ │ │ │ │ │ ├── FactorySubContainerBinderBase.cs.meta │ │ │ │ │ │ │ ├── FactorySubContainerBinderWithParams.cs │ │ │ │ │ │ │ └── FactorySubContainerBinderWithParams.cs.meta │ │ │ │ │ │ ├── Untyped.meta │ │ │ │ │ │ └── Untyped │ │ │ │ │ │ │ ├── FactoryFromBinderUntyped.cs │ │ │ │ │ │ │ └── FactoryFromBinderUntyped.cs.meta │ │ │ │ │ ├── FactoryFromBinderBase.cs │ │ │ │ │ ├── FactoryFromBinderBase.cs.meta │ │ │ │ │ ├── FactoryToChoiceBinder.meta │ │ │ │ │ ├── FactoryToChoiceBinder │ │ │ │ │ │ ├── DecoratorToChoiceFromBinder.cs │ │ │ │ │ │ ├── DecoratorToChoiceFromBinder.cs.meta │ │ │ │ │ │ ├── FactoryToChoiceBinder0.cs │ │ │ │ │ │ ├── FactoryToChoiceBinder0.cs.meta │ │ │ │ │ │ ├── FactoryToChoiceBinder1.cs │ │ │ │ │ │ ├── FactoryToChoiceBinder1.cs.meta │ │ │ │ │ │ ├── FactoryToChoiceBinder10.cs │ │ │ │ │ │ ├── FactoryToChoiceBinder10.cs.meta │ │ │ │ │ │ ├── FactoryToChoiceBinder2.cs │ │ │ │ │ │ ├── FactoryToChoiceBinder2.cs.meta │ │ │ │ │ │ ├── FactoryToChoiceBinder3.cs │ │ │ │ │ │ ├── FactoryToChoiceBinder3.cs.meta │ │ │ │ │ │ ├── FactoryToChoiceBinder4.cs │ │ │ │ │ │ ├── FactoryToChoiceBinder4.cs.meta │ │ │ │ │ │ ├── FactoryToChoiceBinder5.cs │ │ │ │ │ │ ├── FactoryToChoiceBinder5.cs.meta │ │ │ │ │ │ ├── FactoryToChoiceBinder6.cs │ │ │ │ │ │ └── FactoryToChoiceBinder6.cs.meta │ │ │ │ │ ├── FactoryToChoiceIdBinder.meta │ │ │ │ │ ├── FactoryToChoiceIdBinder │ │ │ │ │ │ ├── FactoryToChoiceIdBinder0.cs │ │ │ │ │ │ ├── FactoryToChoiceIdBinder0.cs.meta │ │ │ │ │ │ ├── FactoryToChoiceIdBinder1.cs │ │ │ │ │ │ ├── FactoryToChoiceIdBinder1.cs.meta │ │ │ │ │ │ ├── FactoryToChoiceIdBinder10.cs │ │ │ │ │ │ ├── FactoryToChoiceIdBinder10.cs.meta │ │ │ │ │ │ ├── FactoryToChoiceIdBinder2.cs │ │ │ │ │ │ ├── FactoryToChoiceIdBinder2.cs.meta │ │ │ │ │ │ ├── FactoryToChoiceIdBinder3.cs │ │ │ │ │ │ ├── FactoryToChoiceIdBinder3.cs.meta │ │ │ │ │ │ ├── FactoryToChoiceIdBinder4.cs │ │ │ │ │ │ ├── FactoryToChoiceIdBinder4.cs.meta │ │ │ │ │ │ ├── FactoryToChoiceIdBinder5.cs │ │ │ │ │ │ ├── FactoryToChoiceIdBinder5.cs.meta │ │ │ │ │ │ ├── FactoryToChoiceIdBinder6.cs │ │ │ │ │ │ └── FactoryToChoiceIdBinder6.cs.meta │ │ │ │ │ ├── PlaceholderFactoryBindingFinalizer.cs │ │ │ │ │ ├── PlaceholderFactoryBindingFinalizer.cs.meta │ │ │ │ │ ├── Pooling.meta │ │ │ │ │ └── Pooling │ │ │ │ │ │ ├── MemoryPoolBindingFinalizer.cs │ │ │ │ │ │ ├── MemoryPoolBindingFinalizer.cs.meta │ │ │ │ │ │ ├── MemoryPoolExpandBinder.cs │ │ │ │ │ │ ├── MemoryPoolExpandBinder.cs.meta │ │ │ │ │ │ ├── MemoryPoolInitialSizeBinder.cs │ │ │ │ │ │ └── MemoryPoolInitialSizeBinder.cs.meta │ │ │ │ ├── FromBinders.meta │ │ │ │ ├── FromBinders │ │ │ │ │ ├── FromBinder.cs │ │ │ │ │ ├── FromBinder.cs.meta │ │ │ │ │ ├── FromBinderGeneric.cs │ │ │ │ │ ├── FromBinderGeneric.cs.meta │ │ │ │ │ ├── FromBinderNonGeneric.cs │ │ │ │ │ └── FromBinderNonGeneric.cs.meta │ │ │ │ ├── GameObject.meta │ │ │ │ ├── GameObject │ │ │ │ │ ├── NameTransformScopeConcreteIdArgConditionCopyNonLazyBinder.cs │ │ │ │ │ ├── NameTransformScopeConcreteIdArgConditionCopyNonLazyBinder.cs.meta │ │ │ │ │ ├── TransformScopeConcreteIdArgConditionCopyNonLazyBinder.cs │ │ │ │ │ └── TransformScopeConcreteIdArgConditionCopyNonLazyBinder.cs.meta │ │ │ │ ├── IdBinder.cs │ │ │ │ ├── IdBinder.cs.meta │ │ │ │ ├── IdScopeConcreteIdArgConditionCopyNonLazyBinder.cs │ │ │ │ ├── IdScopeConcreteIdArgConditionCopyNonLazyBinder.cs.meta │ │ │ │ ├── IfNotBoundBinder.cs │ │ │ │ ├── IfNotBoundBinder.cs.meta │ │ │ │ ├── InstantiateCallbackConditionCopyNonLazyBinder.cs │ │ │ │ ├── InstantiateCallbackConditionCopyNonLazyBinder.cs.meta │ │ │ │ ├── NonLazyBinder.cs │ │ │ │ ├── NonLazyBinder.cs.meta │ │ │ │ ├── ScopeConcreteIdArgConditionCopyNonLazyBinder.cs │ │ │ │ ├── ScopeConcreteIdArgConditionCopyNonLazyBinder.cs.meta │ │ │ │ ├── SubContainerBinder.cs │ │ │ │ ├── SubContainerBinder.cs.meta │ │ │ │ ├── WithKernelDefaultParentScopeConcreteIdArgConditionCopyNonLazyBinder.cs │ │ │ │ ├── WithKernelDefaultParentScopeConcreteIdArgConditionCopyNonLazyBinder.cs.meta │ │ │ │ ├── WithKernelScopeConcreteIdArgConditionCopyNonLazyBinder.cs │ │ │ │ └── WithKernelScopeConcreteIdArgConditionCopyNonLazyBinder.cs.meta │ │ │ ├── BindingUtil.cs │ │ │ ├── BindingUtil.cs.meta │ │ │ ├── Finalizers.meta │ │ │ └── Finalizers │ │ │ │ ├── IBindingFinalizer.cs │ │ │ │ ├── IBindingFinalizer.cs.meta │ │ │ │ ├── NullBindingFinalizer.cs │ │ │ │ ├── NullBindingFinalizer.cs.meta │ │ │ │ ├── PrefabBindingFinalizer.cs │ │ │ │ ├── PrefabBindingFinalizer.cs.meta │ │ │ │ ├── PrefabResourceBindingFinalizer.cs │ │ │ │ ├── PrefabResourceBindingFinalizer.cs.meta │ │ │ │ ├── ProviderBindingFinalizer.cs │ │ │ │ ├── ProviderBindingFinalizer.cs.meta │ │ │ │ ├── ScopableBindingFinalizer.cs │ │ │ │ ├── ScopableBindingFinalizer.cs.meta │ │ │ │ ├── SingleProviderBindingFinalizer.cs │ │ │ │ ├── SingleProviderBindingFinalizer.cs.meta │ │ │ │ ├── SubContainerBindingFinalizer.cs │ │ │ │ ├── SubContainerBindingFinalizer.cs.meta │ │ │ │ ├── SubContainerPrefabBindingFinalizer.cs │ │ │ │ └── SubContainerPrefabBindingFinalizer.cs.meta │ │ ├── Editor.meta │ │ ├── Editor │ │ │ ├── EditorStaticInstaller.cs │ │ │ ├── EditorStaticInstaller.cs.meta │ │ │ ├── EditorWindow.meta │ │ │ ├── EditorWindow │ │ │ │ ├── ZenjectEditorWindow.cs │ │ │ │ └── ZenjectEditorWindow.cs.meta │ │ │ ├── Editors.meta │ │ │ ├── Editors │ │ │ │ ├── BaseCompositeInstallerEditor.cs │ │ │ │ ├── BaseCompositeInstallerEditor.cs.meta │ │ │ │ ├── CompositeInstallerEditorDescriptions.cs │ │ │ │ ├── CompositeInstallerEditorDescriptions.cs.meta │ │ │ │ ├── CompositeMonoInstallerEditor.cs │ │ │ │ ├── CompositeMonoInstallerEditor.cs.meta │ │ │ │ ├── CompositeScriptableObjectInstallerEditor.cs │ │ │ │ ├── CompositeScriptableObjectInstallerEditor.cs.meta │ │ │ │ ├── ContextEditor.cs │ │ │ │ ├── ContextEditor.cs.meta │ │ │ │ ├── GameObjectContextEditor.cs │ │ │ │ ├── GameObjectContextEditor.cs.meta │ │ │ │ ├── InstallerPropertyInfo.cs │ │ │ │ ├── InstallerPropertyInfo.cs.meta │ │ │ │ ├── ProjectContextEditor.cs │ │ │ │ ├── ProjectContextEditor.cs.meta │ │ │ │ ├── RunnableContextEditor.cs │ │ │ │ ├── RunnableContextEditor.cs.meta │ │ │ │ ├── SceneContextEditor.cs │ │ │ │ ├── SceneContextEditor.cs.meta │ │ │ │ ├── SceneDecoratorContextEditor.cs │ │ │ │ └── SceneDecoratorContextEditor.cs.meta │ │ │ ├── ObjectGraphVisualizer.cs │ │ │ ├── ObjectGraphVisualizer.cs.meta │ │ │ ├── SceneParentLoading.meta │ │ │ ├── SceneParentLoading │ │ │ │ ├── DefaultSceneContractConfig.cs │ │ │ │ ├── DefaultSceneContractConfig.cs.meta │ │ │ │ ├── SceneParentAutomaticLoader.cs │ │ │ │ └── SceneParentAutomaticLoader.cs.meta │ │ │ ├── UnityInspectorListEditor.cs │ │ │ ├── UnityInspectorListEditor.cs.meta │ │ │ ├── ZenMenuItems.cs │ │ │ ├── ZenMenuItems.cs.meta │ │ │ ├── ZenUnityEditorUtil.cs │ │ │ ├── ZenUnityEditorUtil.cs.meta │ │ │ ├── Zenject-Editor.asmdef │ │ │ └── Zenject-Editor.asmdef.meta │ │ ├── Factories.meta │ │ ├── Factories │ │ │ ├── FactoryProviderWrapper.cs │ │ │ ├── FactoryProviderWrapper.cs.meta │ │ │ ├── IFactory.cs │ │ │ ├── IFactory.cs.meta │ │ │ ├── KeyedFactory.cs │ │ │ ├── KeyedFactory.cs.meta │ │ │ ├── PlaceholderFactory.cs │ │ │ ├── PlaceholderFactory.cs.meta │ │ │ ├── PlaceholderFactoryBase.cs │ │ │ ├── PlaceholderFactoryBase.cs.meta │ │ │ ├── Pooling.meta │ │ │ ├── Pooling │ │ │ │ ├── IMemoryPool.cs │ │ │ │ ├── IMemoryPool.cs.meta │ │ │ │ ├── MemoryPool.cs │ │ │ │ ├── MemoryPool.cs.meta │ │ │ │ ├── MemoryPoolBase.cs │ │ │ │ ├── MemoryPoolBase.cs.meta │ │ │ │ ├── MonoMemoryPool.cs │ │ │ │ ├── MonoMemoryPool.cs.meta │ │ │ │ ├── MonoPoolableMemoryPool.cs │ │ │ │ ├── MonoPoolableMemoryPool.cs.meta │ │ │ │ ├── PoolFactory.cs │ │ │ │ ├── PoolFactory.cs.meta │ │ │ │ ├── PoolableMemoryPool.cs │ │ │ │ ├── PoolableMemoryPool.cs.meta │ │ │ │ ├── Static.meta │ │ │ │ ├── Static │ │ │ │ │ ├── PoolableStaticMemoryPool.cs │ │ │ │ │ ├── PoolableStaticMemoryPool.cs.meta │ │ │ │ │ ├── StaticMemoryPool.cs │ │ │ │ │ └── StaticMemoryPool.cs.meta │ │ │ │ ├── Util.meta │ │ │ │ └── Util │ │ │ │ │ ├── ArrayPool.cs │ │ │ │ │ ├── ArrayPool.cs.meta │ │ │ │ │ ├── DictionaryPool.cs │ │ │ │ │ ├── DictionaryPool.cs.meta │ │ │ │ │ ├── HashSetPool.cs │ │ │ │ │ ├── HashSetPool.cs.meta │ │ │ │ │ ├── ListPool.cs │ │ │ │ │ ├── ListPool.cs.meta │ │ │ │ │ ├── PoolCleanupChecker.cs │ │ │ │ │ ├── PoolCleanupChecker.cs.meta │ │ │ │ │ ├── StaticMemoryPoolRegistry.cs │ │ │ │ │ └── StaticMemoryPoolRegistry.cs.meta │ │ │ ├── PrefabFactory.cs │ │ │ ├── PrefabFactory.cs.meta │ │ │ ├── PrefabResourceFactory.cs │ │ │ └── PrefabResourceFactory.cs.meta │ │ ├── Injection.meta │ │ ├── Injection │ │ │ ├── InjectContext.cs │ │ │ ├── InjectContext.cs.meta │ │ │ ├── InjectUtil.cs │ │ │ ├── InjectUtil.cs.meta │ │ │ ├── LazyInject.cs │ │ │ └── LazyInject.cs.meta │ │ ├── Install.meta │ │ ├── Install │ │ │ ├── CompositeInstallerExtensions.cs │ │ │ ├── CompositeInstallerExtensions.cs.meta │ │ │ ├── CompositeMonoInstaller.cs │ │ │ ├── CompositeMonoInstaller.cs.meta │ │ │ ├── CompositeScriptableObjectInstaller.cs │ │ │ ├── CompositeScriptableObjectInstaller.cs.meta │ │ │ ├── Contexts.meta │ │ │ ├── Contexts │ │ │ │ ├── Context.cs │ │ │ │ ├── Context.cs.meta │ │ │ │ ├── GameObjectContext.cs │ │ │ │ ├── GameObjectContext.cs.meta │ │ │ │ ├── ProjectContext.cs │ │ │ │ ├── ProjectContext.cs.meta │ │ │ │ ├── RunnableContext.cs │ │ │ │ ├── RunnableContext.cs.meta │ │ │ │ ├── SceneContext.cs │ │ │ │ ├── SceneContext.cs.meta │ │ │ │ ├── SceneDecoratorContext.cs │ │ │ │ ├── SceneDecoratorContext.cs.meta │ │ │ │ ├── StaticContext.cs │ │ │ │ └── StaticContext.cs.meta │ │ │ ├── ICompositeInstaller.cs │ │ │ ├── ICompositeInstaller.cs.meta │ │ │ ├── IInstaller.cs │ │ │ ├── IInstaller.cs.meta │ │ │ ├── Installer.cs │ │ │ ├── Installer.cs.meta │ │ │ ├── InstallerBase.cs │ │ │ ├── InstallerBase.cs.meta │ │ │ ├── MonoInstaller.cs │ │ │ ├── MonoInstaller.cs.meta │ │ │ ├── MonoInstallerBase.cs │ │ │ ├── MonoInstallerBase.cs.meta │ │ │ ├── ScriptableObjectInstaller.cs │ │ │ ├── ScriptableObjectInstaller.cs.meta │ │ │ ├── ScriptableObjectInstallerBase.cs │ │ │ ├── ScriptableObjectInstallerBase.cs.meta │ │ │ ├── ZenjectBinding.cs │ │ │ ├── ZenjectBinding.cs.meta │ │ │ ├── ZenjectManagersInstaller.cs │ │ │ └── ZenjectManagersInstaller.cs.meta │ │ ├── Internal.meta │ │ ├── Internal │ │ │ ├── Assert.cs │ │ │ ├── Assert.cs.meta │ │ │ ├── Func.cs │ │ │ ├── Func.cs.meta │ │ │ ├── LinqExtensions.cs │ │ │ ├── LinqExtensions.cs.meta │ │ │ ├── Log.cs │ │ │ ├── Log.cs.meta │ │ │ ├── MiscExtensions.cs │ │ │ ├── MiscExtensions.cs.meta │ │ │ ├── PreserveAttribute.cs │ │ │ ├── PreserveAttribute.cs.meta │ │ │ ├── TypeExtensions.cs │ │ │ ├── TypeExtensions.cs.meta │ │ │ ├── TypeStringFormatter.cs │ │ │ ├── TypeStringFormatter.cs.meta │ │ │ ├── ValuePair.cs │ │ │ └── ValuePair.cs.meta │ │ ├── Main.meta │ │ ├── Main │ │ │ ├── BindingId.cs │ │ │ ├── BindingId.cs.meta │ │ │ ├── DiContainer.cs │ │ │ ├── DiContainer.cs.meta │ │ │ ├── IInstantiator.cs │ │ │ ├── IInstantiator.cs.meta │ │ │ ├── LazyInstanceInjector.cs │ │ │ ├── LazyInstanceInjector.cs.meta │ │ │ ├── LookupId.cs │ │ │ ├── LookupId.cs.meta │ │ │ ├── SingletonMarkRegistry.cs │ │ │ ├── SingletonMarkRegistry.cs.meta │ │ │ ├── ZenjectSettings.cs │ │ │ └── ZenjectSettings.cs.meta │ │ ├── Providers.meta │ │ ├── Providers │ │ │ ├── CachedOpenTypeProvider.cs │ │ │ ├── CachedOpenTypeProvider.cs.meta │ │ │ ├── CachedProvider.cs │ │ │ ├── CachedProvider.cs.meta │ │ │ ├── ComponentProviders.meta │ │ │ ├── ComponentProviders │ │ │ │ ├── AddToGameObjectComponentProviders.meta │ │ │ │ ├── AddToGameObjectComponentProviders │ │ │ │ │ ├── AddToCurrentGameObjectComponentProvider.cs │ │ │ │ │ ├── AddToCurrentGameObjectComponentProvider.cs.meta │ │ │ │ │ ├── AddToExistingGameObjectComponentProvider.cs │ │ │ │ │ ├── AddToExistingGameObjectComponentProvider.cs.meta │ │ │ │ │ ├── AddToGameObjectComponentProviderBase.cs │ │ │ │ │ ├── AddToGameObjectComponentProviderBase.cs.meta │ │ │ │ │ ├── AddToNewGameObjectComponentProvider.cs │ │ │ │ │ └── AddToNewGameObjectComponentProvider.cs.meta │ │ │ │ ├── GetFromGameObjectComponentProvider.cs │ │ │ │ ├── GetFromGameObjectComponentProvider.cs.meta │ │ │ │ ├── GetFromGameObjectGetterComponentProvider.cs │ │ │ │ ├── GetFromGameObjectGetterComponentProvider.cs.meta │ │ │ │ ├── GetFromPrefabComponentProvider.cs │ │ │ │ ├── GetFromPrefabComponentProvider.cs.meta │ │ │ │ ├── InstantiateOnPrefabComponentProvider.cs │ │ │ │ └── InstantiateOnPrefabComponentProvider.cs.meta │ │ │ ├── Decorator.meta │ │ │ ├── Decorator │ │ │ │ ├── DecoratorProvider.cs │ │ │ │ └── DecoratorProvider.cs.meta │ │ │ ├── GameObjectProviders.meta │ │ │ ├── GameObjectProviders │ │ │ │ ├── EmptyGameObjectProvider.cs │ │ │ │ ├── EmptyGameObjectProvider.cs.meta │ │ │ │ ├── PrefabGameObjectProvider.cs │ │ │ │ └── PrefabGameObjectProvider.cs.meta │ │ │ ├── GetterProvider.cs │ │ │ ├── GetterProvider.cs.meta │ │ │ ├── IFactoryProvider.cs │ │ │ ├── IFactoryProvider.cs.meta │ │ │ ├── IProvider.cs │ │ │ ├── IProvider.cs.meta │ │ │ ├── IProviderExtensions.cs │ │ │ ├── IProviderExtensions.cs.meta │ │ │ ├── InstanceProvider.cs │ │ │ ├── InstanceProvider.cs.meta │ │ │ ├── MethodMultipleProviderUntyped.cs │ │ │ ├── MethodMultipleProviderUntyped.cs.meta │ │ │ ├── MethodProvider.cs │ │ │ ├── MethodProvider.cs.meta │ │ │ ├── MethodProviderMultiple.cs │ │ │ ├── MethodProviderMultiple.cs.meta │ │ │ ├── MethodProviderSimple.cs │ │ │ ├── MethodProviderSimple.cs.meta │ │ │ ├── MethodProviderUntyped.cs │ │ │ ├── MethodProviderUntyped.cs.meta │ │ │ ├── MethodProviderWithContainer.cs │ │ │ ├── MethodProviderWithContainer.cs.meta │ │ │ ├── PoolableMemoryPoolProvider.cs │ │ │ ├── PoolableMemoryPoolProvider.cs.meta │ │ │ ├── PrefabCreators.meta │ │ │ ├── PrefabCreators │ │ │ │ ├── IPrefabInstantiator.cs │ │ │ │ ├── IPrefabInstantiator.cs.meta │ │ │ │ ├── PrefabInstantiator.cs │ │ │ │ ├── PrefabInstantiator.cs.meta │ │ │ │ ├── PrefabInstantiatorCached.cs │ │ │ │ └── PrefabInstantiatorCached.cs.meta │ │ │ ├── PrefabProviders.meta │ │ │ ├── PrefabProviders │ │ │ │ ├── IPrefabProvider.cs │ │ │ │ ├── IPrefabProvider.cs.meta │ │ │ │ ├── PrefabProvider.cs │ │ │ │ ├── PrefabProvider.cs.meta │ │ │ │ ├── PrefabProviderCustom.cs │ │ │ │ ├── PrefabProviderCustom.cs.meta │ │ │ │ ├── PrefabProviderResource.cs │ │ │ │ └── PrefabProviderResource.cs.meta │ │ │ ├── ProviderUtil.cs │ │ │ ├── ProviderUtil.cs.meta │ │ │ ├── ResolveProvider.cs │ │ │ ├── ResolveProvider.cs.meta │ │ │ ├── ResourceProvider.cs │ │ │ ├── ResourceProvider.cs.meta │ │ │ ├── ScriptableObjectInstanceProvider.cs │ │ │ ├── ScriptableObjectInstanceProvider.cs.meta │ │ │ ├── ScriptableObjectResourceProvider.cs │ │ │ ├── ScriptableObjectResourceProvider.cs.meta │ │ │ ├── SubContainerCreators.meta │ │ │ ├── SubContainerCreators │ │ │ │ ├── ISubContainerCreator.cs │ │ │ │ ├── ISubContainerCreator.cs.meta │ │ │ │ ├── SubContainerCreatorBindInfo.cs │ │ │ │ ├── SubContainerCreatorBindInfo.cs.meta │ │ │ │ ├── SubContainerCreatorByInstaller.cs │ │ │ │ ├── SubContainerCreatorByInstaller.cs.meta │ │ │ │ ├── SubContainerCreatorByInstance.cs │ │ │ │ ├── SubContainerCreatorByInstance.cs.meta │ │ │ │ ├── SubContainerCreatorByInstanceGetter.cs │ │ │ │ ├── SubContainerCreatorByInstanceGetter.cs.meta │ │ │ │ ├── SubContainerCreatorByMethod.cs │ │ │ │ ├── SubContainerCreatorByMethod.cs.meta │ │ │ │ ├── SubContainerCreatorByNewGameObjectDynamicContext.cs │ │ │ │ ├── SubContainerCreatorByNewGameObjectDynamicContext.cs.meta │ │ │ │ ├── SubContainerCreatorByNewPrefab.cs │ │ │ │ ├── SubContainerCreatorByNewPrefab.cs.meta │ │ │ │ ├── SubContainerCreatorByNewPrefabDynamicContext.cs │ │ │ │ ├── SubContainerCreatorByNewPrefabDynamicContext.cs.meta │ │ │ │ ├── SubContainerCreatorByNewPrefabWithParams.cs │ │ │ │ ├── SubContainerCreatorByNewPrefabWithParams.cs.meta │ │ │ │ ├── SubContainerCreatorCached.cs │ │ │ │ ├── SubContainerCreatorCached.cs.meta │ │ │ │ ├── SubContainerCreatorDynamicContext.cs │ │ │ │ ├── SubContainerCreatorDynamicContext.cs.meta │ │ │ │ ├── SubContainerCreatorUtil.cs │ │ │ │ └── SubContainerCreatorUtil.cs.meta │ │ │ ├── SubContainerDependencyProvider.cs │ │ │ ├── SubContainerDependencyProvider.cs.meta │ │ │ ├── TransientProvider.cs │ │ │ └── TransientProvider.cs.meta │ │ ├── Runtime.meta │ │ ├── Runtime │ │ │ ├── AnimatorInterfaces.meta │ │ │ ├── AnimatorInterfaces │ │ │ │ ├── AnimatorIkHandlerManager.cs │ │ │ │ ├── AnimatorIkHandlerManager.cs.meta │ │ │ │ ├── AnimatorInstaller.cs │ │ │ │ ├── AnimatorInstaller.cs.meta │ │ │ │ ├── AnimatorMoveHandlerManager.cs │ │ │ │ ├── AnimatorMoveHandlerManager.cs.meta │ │ │ │ ├── IAnimatorIkHandler.cs │ │ │ │ ├── IAnimatorIkHandler.cs.meta │ │ │ │ ├── IAnimatorMoveHandler.cs │ │ │ │ └── IAnimatorMoveHandler.cs.meta │ │ │ ├── DisposableManager.cs │ │ │ ├── DisposableManager.cs.meta │ │ │ ├── GuiRenderableManager.cs │ │ │ ├── GuiRenderableManager.cs.meta │ │ │ ├── GuiRenderer.cs │ │ │ ├── GuiRenderer.cs.meta │ │ │ ├── InitializableManager.cs │ │ │ ├── InitializableManager.cs.meta │ │ │ ├── Kernels.meta │ │ │ ├── Kernels │ │ │ │ ├── DecoratableMonoKernel.cs │ │ │ │ ├── DecoratableMonoKernel.cs.meta │ │ │ │ ├── DefaultGameObjectKernel.cs │ │ │ │ ├── DefaultGameObjectKernel.cs.meta │ │ │ │ ├── Kernel.cs │ │ │ │ ├── Kernel.cs.meta │ │ │ │ ├── MonoKernel.cs │ │ │ │ ├── MonoKernel.cs.meta │ │ │ │ ├── ProjectKernel.cs │ │ │ │ ├── ProjectKernel.cs.meta │ │ │ │ ├── SceneKernel.cs │ │ │ │ └── SceneKernel.cs.meta │ │ │ ├── PoolableManager.cs │ │ │ ├── PoolableManager.cs.meta │ │ │ ├── SceneContextRegistry.cs │ │ │ ├── SceneContextRegistry.cs.meta │ │ │ ├── SceneContextRegistryAdderAndRemover.cs │ │ │ ├── SceneContextRegistryAdderAndRemover.cs.meta │ │ │ ├── TaskUpdater.cs │ │ │ ├── TaskUpdater.cs.meta │ │ │ ├── TickableManager.cs │ │ │ └── TickableManager.cs.meta │ │ ├── Usage.meta │ │ ├── Usage │ │ │ ├── Zenject-usage.dll │ │ │ ├── Zenject-usage.dll.meta │ │ │ ├── link.xml │ │ │ └── link.xml.meta │ │ ├── Util.meta │ │ ├── Util │ │ │ ├── ActionInstaller.cs │ │ │ ├── ActionInstaller.cs.meta │ │ │ ├── CheatSheet.cs │ │ │ ├── CheatSheet.cs.meta │ │ │ ├── ConstructorChoiceStrategy.cs │ │ │ ├── ConstructorChoiceStrategy.cs.meta │ │ │ ├── DefaultGameObjectParentInstaller.cs │ │ │ ├── DefaultGameObjectParentInstaller.cs.meta │ │ │ ├── DisposeBlock.cs │ │ │ ├── DisposeBlock.cs.meta │ │ │ ├── ExecutionOrderInstaller.cs │ │ │ ├── ExecutionOrderInstaller.cs.meta │ │ │ ├── ProfileBlock.cs │ │ │ ├── ProfileBlock.cs.meta │ │ │ ├── ProfileTimers.cs │ │ │ ├── ProfileTimers.cs.meta │ │ │ ├── ReflectionInfoTypeInfoConverter.cs │ │ │ ├── ReflectionInfoTypeInfoConverter.cs.meta │ │ │ ├── ReflectionTypeInfo.cs │ │ │ ├── ReflectionTypeInfo.cs.meta │ │ │ ├── ReflectionUtil.cs │ │ │ ├── ReflectionUtil.cs.meta │ │ │ ├── TypeAnalyzer.cs │ │ │ ├── TypeAnalyzer.cs.meta │ │ │ ├── UnityUtil.cs │ │ │ ├── UnityUtil.cs.meta │ │ │ ├── ValidationUtil.cs │ │ │ ├── ValidationUtil.cs.meta │ │ │ ├── ZenAutoInjecter.cs │ │ │ ├── ZenAutoInjecter.cs.meta │ │ │ ├── ZenPools.cs │ │ │ ├── ZenPools.cs.meta │ │ │ ├── ZenReflectionTypeAnalyzer.cs │ │ │ ├── ZenReflectionTypeAnalyzer.cs.meta │ │ │ ├── ZenUtilInternal.cs │ │ │ ├── ZenUtilInternal.cs.meta │ │ │ ├── ZenjectException.cs │ │ │ ├── ZenjectException.cs.meta │ │ │ ├── ZenjectSceneLoader.cs │ │ │ ├── ZenjectSceneLoader.cs.meta │ │ │ ├── ZenjectStateMachineBehaviourAutoInjecter.cs │ │ │ └── ZenjectStateMachineBehaviourAutoInjecter.cs.meta │ │ ├── Validation.meta │ │ └── Validation │ │ │ ├── IValidatable.cs │ │ │ ├── IValidatable.cs.meta │ │ │ ├── ValidationMarker.cs │ │ │ └── ValidationMarker.cs.meta │ │ ├── Version.txt │ │ ├── Version.txt.meta │ │ ├── link.xml │ │ ├── link.xml.meta │ │ ├── package.json │ │ ├── package.json.meta │ │ ├── zenject.asmdef │ │ └── zenject.asmdef.meta ├── Resources.meta ├── Resources │ ├── Balls.meta │ ├── Balls │ │ ├── Ball.prefab │ │ └── Ball.prefab.meta │ ├── DOTweenSettings.asset │ ├── DOTweenSettings.asset.meta │ ├── Huds.meta │ ├── Huds │ │ ├── GameHud.prefab │ │ ├── GameHud.prefab.meta │ │ ├── LoadingCurtain.prefab │ │ ├── LoadingCurtain.prefab.meta │ │ ├── MenuHud.prefab │ │ └── MenuHud.prefab.meta │ ├── Infrastructure.meta │ ├── Infrastructure │ │ ├── CoroutineRunner.prefab │ │ ├── CoroutineRunner.prefab.meta │ │ ├── EmptySceneContext.prefab │ │ ├── EmptySceneContext.prefab.meta │ │ ├── GameRunner.prefab │ │ ├── GameRunner.prefab.meta │ │ ├── TimeService.prefab │ │ └── TimeService.prefab.meta │ ├── Levels.meta │ ├── Levels │ │ ├── Level 1.prefab │ │ └── Level 1.prefab.meta │ ├── Players.meta │ ├── Players │ │ ├── Player.prefab │ │ └── Player.prefab.meta │ ├── ProjectContext.prefab │ ├── ProjectContext.prefab.meta │ ├── StaticData.meta │ ├── StaticData │ │ ├── Balance.meta │ │ ├── Balance │ │ │ ├── Balance.asset │ │ │ ├── Balance.asset.meta │ │ │ ├── GameConfig.asset │ │ │ └── GameConfig.asset.meta │ │ ├── BallChainConfig.asset │ │ ├── BallChainConfig.asset.meta │ │ ├── Chapters.meta │ │ ├── Chapters │ │ │ ├── ChapterStaticData.asset │ │ │ └── ChapterStaticData.asset.meta │ │ ├── Items.meta │ │ ├── Items │ │ │ ├── Item_Blue.asset │ │ │ ├── Item_Blue.asset.meta │ │ │ ├── Item_Green.asset │ │ │ ├── Item_Green.asset.meta │ │ │ ├── Item_Red.asset │ │ │ ├── Item_Red.asset.meta │ │ │ ├── Item_Yellow.asset │ │ │ └── Item_Yellow.asset.meta │ │ ├── Levels.meta │ │ ├── Levels │ │ │ ├── Level_1.asset │ │ │ ├── Level_1.asset.meta │ │ │ ├── Level_2.asset │ │ │ ├── Level_2.asset.meta │ │ │ ├── Level_3.asset │ │ │ └── Level_3.asset.meta │ │ ├── Random.meta │ │ ├── Random │ │ │ ├── LevelRandomConfig_Base.asset │ │ │ └── LevelRandomConfig_Base.asset.meta │ │ ├── Score.meta │ │ ├── Score │ │ │ ├── ScoreConfig_Default.asset │ │ │ └── ScoreConfig_Default.asset.meta │ │ ├── Sounds.meta │ │ ├── Sounds │ │ │ ├── Sounds.asset │ │ │ └── Sounds.asset.meta │ │ ├── Vibration.meta │ │ ├── Vibration │ │ │ ├── VibrationsData.asset │ │ │ └── VibrationsData.asset.meta │ │ ├── WindowsStaticData.asset │ │ └── WindowsStaticData.asset.meta │ ├── Tests.meta │ ├── Tests │ │ ├── TeleportingSoundEmitter.prefab │ │ └── TeleportingSoundEmitter.prefab.meta │ ├── UI.meta │ ├── UI │ │ ├── Menu.meta │ │ ├── Menu │ │ │ ├── ItemLevel.prefab │ │ │ └── ItemLevel.prefab.meta │ │ ├── StartLevelInfo.prefab │ │ ├── StartLevelInfo.prefab.meta │ │ ├── UiRoot.prefab │ │ ├── UiRoot.prefab.meta │ │ ├── Widget.prefab │ │ ├── Widget.prefab.meta │ │ ├── Windows.meta │ │ └── Windows │ │ │ ├── Finish.meta │ │ │ ├── Finish │ │ │ ├── BonusWIndow.prefab │ │ │ ├── BonusWIndow.prefab.meta │ │ │ ├── LoseWIndow.prefab │ │ │ ├── LoseWIndow.prefab.meta │ │ │ ├── WinWIndow.prefab │ │ │ └── WinWIndow.prefab.meta │ │ │ ├── SettingWindow.prefab │ │ │ └── SettingWindow.prefab.meta │ ├── URP.meta │ ├── URP │ │ ├── URP Asset.asset │ │ ├── URP Asset.asset.meta │ │ ├── URP Asset_Renderer.asset │ │ └── URP Asset_Renderer.asset.meta │ ├── ZenjectReflectionBakingSettings.asset │ └── ZenjectReflectionBakingSettings.asset.meta ├── ResourcesStatic.meta ├── ResourcesStatic │ ├── Animation.meta │ ├── Animation │ │ ├── EndLevel.meta │ │ ├── EndLevel │ │ │ ├── Close_Mouth.anim │ │ │ ├── Close_Mouth.anim.meta │ │ │ ├── End.controller │ │ │ ├── End.controller.meta │ │ │ ├── Open_Mouth.anim │ │ │ └── Open_Mouth.anim.meta │ │ ├── Player.meta │ │ ├── Player │ │ │ ├── Close_Eye.anim │ │ │ ├── Close_Eye.anim.meta │ │ │ ├── Graphics.controller │ │ │ ├── Graphics.controller.meta │ │ │ ├── Open_Eye.anim │ │ │ └── Open_Eye.anim.meta │ │ ├── UI.meta │ │ └── UI │ │ │ ├── Button_Navigation.meta │ │ │ ├── Button_Navigation │ │ │ ├── Button_Navigation_Container.controller │ │ │ ├── Button_Navigation_Container.controller.meta │ │ │ ├── Meta_Game_State.anim │ │ │ ├── Meta_Game_State.anim.meta │ │ │ ├── Play_Game_State.anim │ │ │ ├── Play_Game_State.anim.meta │ │ │ ├── Shop_Game_State.anim │ │ │ └── Shop_Game_State.anim.meta │ │ │ ├── StartLevelInfo.meta │ │ │ └── StartLevelInfo │ │ │ ├── Play_StartInfo.anim │ │ │ ├── Play_StartInfo.anim.meta │ │ │ ├── StartLevelInfo.controller │ │ │ ├── StartLevelInfo.controller.meta │ │ │ ├── Stop_StartInfo.anim │ │ │ └── Stop_StartInfo.anim.meta │ ├── Materials.meta │ ├── Materials │ │ ├── Back_mat.mat │ │ ├── Back_mat.mat.meta │ │ ├── Ball.mat │ │ ├── Ball.mat.meta │ │ ├── End_Plane_mat.mat │ │ ├── End_Plane_mat.mat.meta │ │ ├── Eye_mat.mat │ │ ├── Eye_mat.mat.meta │ │ ├── Mouth_mat.mat │ │ ├── Mouth_mat.mat.meta │ │ ├── Player_1.mat │ │ ├── Player_1.mat.meta │ │ ├── Player_2.mat │ │ ├── Player_2.mat.meta │ │ ├── Pupil_mat.mat │ │ ├── Pupil_mat.mat.meta │ │ ├── Road_Boards_mat.mat │ │ ├── Road_Boards_mat.mat.meta │ │ ├── Road_Underside_mat.mat │ │ ├── Road_Underside_mat.mat.meta │ │ ├── Skybox_Mat.mat │ │ ├── Skybox_Mat.mat.meta │ │ ├── Start_Plane.mat │ │ └── Start_Plane.mat.meta │ ├── Models.meta │ ├── Models │ │ ├── lineAcross_ENV.forest.meta │ │ └── lineAcross_ENV.forest │ │ │ ├── Decoration.meta │ │ │ ├── Decoration │ │ │ ├── Table_1a.fbx │ │ │ ├── Table_1a.fbx.meta │ │ │ ├── Table_2a.fbx │ │ │ ├── Table_2a.fbx.meta │ │ │ ├── Table_3a.fbx │ │ │ ├── Table_3a.fbx.meta │ │ │ ├── box_1a.fbx │ │ │ ├── box_1a.fbx.meta │ │ │ ├── box_2a.fbx │ │ │ ├── box_2a.fbx.meta │ │ │ ├── chair_1a.fbx │ │ │ ├── chair_1a.fbx.meta │ │ │ ├── chair_2a.fbx │ │ │ ├── chair_2a.fbx.meta │ │ │ ├── lamp_1a.fbx │ │ │ ├── lamp_1a.fbx.meta │ │ │ ├── shelf_1a.fbx │ │ │ ├── shelf_1a.fbx.meta │ │ │ ├── shelf_2a.fbx │ │ │ ├── shelf_2a.fbx.meta │ │ │ ├── shelf_3a.fbx │ │ │ ├── shelf_3a.fbx.meta │ │ │ ├── shelf_4a.fbx │ │ │ ├── shelf_4a.fbx.meta │ │ │ ├── streetlamp_1a.fbx │ │ │ ├── streetlamp_1a.fbx.meta │ │ │ ├── vase_1a.fbx │ │ │ ├── vase_1a.fbx.meta │ │ │ ├── vase_1b.fbx │ │ │ ├── vase_1b.fbx.meta │ │ │ ├── vase_1c.fbx │ │ │ └── vase_1c.fbx.meta │ │ │ ├── GrassFlowersETC.meta │ │ │ ├── GrassFlowersETC │ │ │ ├── Bush_1a.fbx │ │ │ ├── Bush_1a.fbx.meta │ │ │ ├── Bush_2a.fbx │ │ │ ├── Bush_2a.fbx.meta │ │ │ ├── Bush_3a.fbx │ │ │ ├── Bush_3a.fbx.meta │ │ │ ├── Mushroom_1a.fbx │ │ │ ├── Mushroom_1a.fbx.meta │ │ │ ├── Mushroom_1b.fbx │ │ │ ├── Mushroom_1b.fbx.meta │ │ │ ├── Mushroom_2a.fbx │ │ │ ├── Mushroom_2a.fbx.meta │ │ │ ├── Mushroom_2b.fbx │ │ │ ├── Mushroom_2b.fbx.meta │ │ │ ├── Plant_1a.fbx │ │ │ ├── Plant_1a.fbx.meta │ │ │ ├── Plant_2a.fbx │ │ │ ├── Plant_2a.fbx.meta │ │ │ ├── Plant_3a.fbx │ │ │ ├── Plant_3a.fbx.meta │ │ │ ├── flower_1a.fbx │ │ │ ├── flower_1a.fbx.meta │ │ │ ├── flower_1b.fbx │ │ │ ├── flower_1b.fbx.meta │ │ │ ├── grass_1a.fbx │ │ │ ├── grass_1a.fbx.meta │ │ │ ├── grass_1b.fbx │ │ │ └── grass_1b.fbx.meta │ │ │ ├── Logs.meta │ │ │ ├── MadePref.meta │ │ │ ├── MadePref │ │ │ ├── House_1a.fbx │ │ │ ├── House_1a.fbx.meta │ │ │ ├── MaterialENV.mat │ │ │ ├── MaterialENV.mat.meta │ │ │ ├── stairs_1a.fbx │ │ │ ├── stairs_1a.fbx.meta │ │ │ ├── woodbrige_1a.fbx │ │ │ ├── woodbrige_1a.fbx.meta │ │ │ ├── woodstairs_1a.fbx │ │ │ ├── woodstairs_1a.fbx.meta │ │ │ ├── woodstairs_2a.fbx │ │ │ └── woodstairs_2a.fbx.meta │ │ │ ├── Meshes.meta │ │ │ ├── Meshes │ │ │ ├── Mesh_2a.fbx │ │ │ ├── Mesh_2a.fbx.meta │ │ │ ├── mesh_1a.fbx │ │ │ ├── mesh_1a.fbx.meta │ │ │ ├── mesh_1a_subdiv.fbx │ │ │ ├── mesh_1a_subdiv.fbx.meta │ │ │ ├── mesh_3a.fbx │ │ │ ├── mesh_3a.fbx.meta │ │ │ ├── mesh_3subdiv.fbx │ │ │ ├── mesh_3subdiv.fbx.meta │ │ │ ├── moon_1a.fbx │ │ │ ├── moon_1a.fbx.meta │ │ │ ├── sun_1a.fbx │ │ │ └── sun_1a.fbx.meta │ │ │ ├── Modules.meta │ │ │ ├── Modules │ │ │ ├── door_1a.fbx │ │ │ ├── door_1a.fbx.meta │ │ │ ├── door_2a.fbx │ │ │ ├── door_2a.fbx.meta │ │ │ ├── logCustoms_1a.fbx │ │ │ └── logCustoms_1a.fbx.meta │ │ │ ├── Prefabs.meta │ │ │ ├── Prefabs │ │ │ ├── DecorationPreFabs.meta │ │ │ ├── DecorationPreFabs │ │ │ │ ├── Table_1a.prefab │ │ │ │ ├── Table_1a.prefab.meta │ │ │ │ ├── Table_2a.prefab │ │ │ │ ├── Table_2a.prefab.meta │ │ │ │ ├── Table_3a.prefab │ │ │ │ ├── Table_3a.prefab.meta │ │ │ │ ├── box_1a.prefab │ │ │ │ ├── box_1a.prefab.meta │ │ │ │ ├── box_2a.prefab │ │ │ │ ├── box_2a.prefab.meta │ │ │ │ ├── chair_1a.prefab │ │ │ │ ├── chair_1a.prefab.meta │ │ │ │ ├── chair_2a.prefab │ │ │ │ ├── chair_2a.prefab.meta │ │ │ │ ├── lamp_1a.prefab │ │ │ │ ├── lamp_1a.prefab.meta │ │ │ │ ├── shelf_1a.prefab │ │ │ │ ├── shelf_1a.prefab.meta │ │ │ │ ├── shelf_2a.prefab │ │ │ │ ├── shelf_2a.prefab.meta │ │ │ │ ├── shelf_3a.prefab │ │ │ │ ├── shelf_3a.prefab.meta │ │ │ │ ├── shelf_4a.prefab │ │ │ │ ├── shelf_4a.prefab.meta │ │ │ │ ├── streetlamp_1a.prefab │ │ │ │ ├── streetlamp_1a.prefab.meta │ │ │ │ ├── vase_1a.prefab │ │ │ │ ├── vase_1a.prefab.meta │ │ │ │ ├── vase_1b.prefab │ │ │ │ ├── vase_1b.prefab.meta │ │ │ │ ├── vase_1c.prefab │ │ │ │ └── vase_1c.prefab.meta │ │ │ ├── GrassFlowersPreFabs.meta │ │ │ ├── GrassFlowersPreFabs │ │ │ │ ├── Bush_1a.prefab │ │ │ │ ├── Bush_1a.prefab.meta │ │ │ │ ├── Bush_2a.prefab │ │ │ │ ├── Bush_2a.prefab.meta │ │ │ │ ├── Bush_3a.prefab │ │ │ │ ├── Bush_3a.prefab.meta │ │ │ │ ├── Mushroom_1a.prefab │ │ │ │ ├── Mushroom_1a.prefab.meta │ │ │ │ ├── Mushroom_1b.prefab │ │ │ │ ├── Mushroom_1b.prefab.meta │ │ │ │ ├── Mushroom_2a.prefab │ │ │ │ ├── Mushroom_2a.prefab.meta │ │ │ │ ├── Mushroom_2b.prefab │ │ │ │ ├── Mushroom_2b.prefab.meta │ │ │ │ ├── Plant_1a.prefab │ │ │ │ ├── Plant_1a.prefab.meta │ │ │ │ ├── Plant_2a.prefab │ │ │ │ ├── Plant_2a.prefab.meta │ │ │ │ ├── Plant_3a.prefab │ │ │ │ ├── Plant_3a.prefab.meta │ │ │ │ ├── flower_1a.prefab │ │ │ │ ├── flower_1a.prefab.meta │ │ │ │ ├── flower_1b.prefab │ │ │ │ ├── flower_1b.prefab.meta │ │ │ │ ├── grass_1a.prefab │ │ │ │ ├── grass_1a.prefab.meta │ │ │ │ ├── grass_1b.prefab │ │ │ │ └── grass_1b.prefab.meta │ │ │ ├── LogsPreFabs.meta │ │ │ ├── LogsPreFabs │ │ │ │ ├── log_1a.prefab │ │ │ │ ├── log_1a.prefab.meta │ │ │ │ ├── log_1b.prefab │ │ │ │ ├── log_1b.prefab.meta │ │ │ │ ├── log_2a.prefab │ │ │ │ ├── log_2a.prefab.meta │ │ │ │ ├── log_2b.prefab │ │ │ │ ├── log_2b.prefab.meta │ │ │ │ ├── log_3a.prefab │ │ │ │ ├── log_3a.prefab.meta │ │ │ │ ├── log_3b.prefab │ │ │ │ ├── log_3b.prefab.meta │ │ │ │ ├── log_4a.prefab │ │ │ │ ├── log_4a.prefab.meta │ │ │ │ ├── log_4b.prefab │ │ │ │ ├── log_4b.prefab.meta │ │ │ │ ├── log_5a.prefab │ │ │ │ ├── log_5a.prefab.meta │ │ │ │ ├── log_5b.prefab │ │ │ │ ├── log_5b.prefab.meta │ │ │ │ ├── log_6a.prefab │ │ │ │ ├── log_6a.prefab.meta │ │ │ │ ├── log_6b.prefab │ │ │ │ ├── log_6b.prefab.meta │ │ │ │ ├── log_7a.prefab │ │ │ │ ├── log_7a.prefab.meta │ │ │ │ ├── log_7b.prefab │ │ │ │ ├── log_7b.prefab.meta │ │ │ │ ├── log_8a.prefab │ │ │ │ ├── log_8a.prefab.meta │ │ │ │ ├── log_8b.prefab │ │ │ │ ├── log_8b.prefab.meta │ │ │ │ ├── sick_1a.prefab │ │ │ │ ├── sick_1a.prefab.meta │ │ │ │ ├── sick_2a.prefab │ │ │ │ ├── sick_2a.prefab.meta │ │ │ │ ├── stump_1a.prefab │ │ │ │ ├── stump_1a.prefab.meta │ │ │ │ ├── stump_2a.prefab │ │ │ │ ├── stump_2a.prefab.meta │ │ │ │ ├── treelog_1a.prefab │ │ │ │ ├── treelog_1a.prefab.meta │ │ │ │ ├── treelog_1b.prefab │ │ │ │ ├── treelog_1b.prefab.meta │ │ │ │ ├── treelog_2a.prefab │ │ │ │ ├── treelog_2a.prefab.meta │ │ │ │ ├── treelog_2b.prefab │ │ │ │ ├── treelog_2b.prefab.meta │ │ │ │ ├── treelog_3a.prefab │ │ │ │ ├── treelog_3a.prefab.meta │ │ │ │ ├── treelog_3b.prefab │ │ │ │ ├── treelog_3b.prefab.meta │ │ │ │ ├── wood_1a.prefab │ │ │ │ ├── wood_1a.prefab.meta │ │ │ │ ├── wood_1b.prefab │ │ │ │ ├── wood_1b.prefab.meta │ │ │ │ ├── wood_2a.prefab │ │ │ │ ├── wood_2a.prefab.meta │ │ │ │ ├── wood_2b.prefab │ │ │ │ ├── wood_2b.prefab.meta │ │ │ │ ├── wood_3a.prefab │ │ │ │ ├── wood_3a.prefab.meta │ │ │ │ ├── wood_3b.prefab │ │ │ │ ├── wood_3b.prefab.meta │ │ │ │ ├── wood_4a.prefab │ │ │ │ ├── wood_4a.prefab.meta │ │ │ │ ├── wood_4b.prefab │ │ │ │ ├── wood_4b.prefab.meta │ │ │ │ ├── woodboard_1a.prefab │ │ │ │ ├── woodboard_1a.prefab.meta │ │ │ │ ├── woodboard_1b.prefab │ │ │ │ ├── woodboard_1b.prefab.meta │ │ │ │ ├── woodboard_2a.prefab │ │ │ │ ├── woodboard_2a.prefab.meta │ │ │ │ ├── woodboard_2b.prefab │ │ │ │ ├── woodboard_2b.prefab.meta │ │ │ │ ├── woodboard_3a.prefab │ │ │ │ ├── woodboard_3a.prefab.meta │ │ │ │ ├── woodboard_3b.prefab │ │ │ │ ├── woodboard_3b.prefab.meta │ │ │ │ ├── woodboard_4a.prefab │ │ │ │ ├── woodboard_4a.prefab.meta │ │ │ │ ├── woodboard_4b.prefab │ │ │ │ ├── woodboard_4b.prefab.meta │ │ │ │ ├── woodboard_5a.prefab │ │ │ │ ├── woodboard_5a.prefab.meta │ │ │ │ ├── woodboard_5b.prefab │ │ │ │ ├── woodboard_5b.prefab.meta │ │ │ │ ├── woodboard_7a.prefab │ │ │ │ ├── woodboard_7a.prefab.meta │ │ │ │ ├── woodboard_7b.prefab │ │ │ │ └── woodboard_7b.prefab.meta │ │ │ ├── MadePrefPreFabs.meta │ │ │ ├── MadePrefPreFabs │ │ │ │ ├── House_1a.prefab │ │ │ │ ├── House_1a.prefab.meta │ │ │ │ ├── stairs_1a.prefab │ │ │ │ ├── stairs_1a.prefab.meta │ │ │ │ ├── woodbrige_1a.prefab │ │ │ │ ├── woodbrige_1a.prefab.meta │ │ │ │ ├── woodstairs_1a.prefab │ │ │ │ ├── woodstairs_1a.prefab.meta │ │ │ │ ├── woodstairs_2a.prefab │ │ │ │ └── woodstairs_2a.prefab.meta │ │ │ ├── MeshPreFabs.meta │ │ │ ├── MeshPreFabs │ │ │ │ ├── Mesh_2a.prefab │ │ │ │ ├── Mesh_2a.prefab.meta │ │ │ │ ├── mesh_1a.prefab │ │ │ │ ├── mesh_1a.prefab.meta │ │ │ │ ├── mesh_1a_subdiv.prefab │ │ │ │ ├── mesh_1a_subdiv.prefab.meta │ │ │ │ ├── mesh_3a.prefab │ │ │ │ ├── mesh_3a.prefab.meta │ │ │ │ ├── mesh_3subdiv.prefab │ │ │ │ ├── mesh_3subdiv.prefab.meta │ │ │ │ ├── moon_1a.prefab │ │ │ │ ├── moon_1a.prefab.meta │ │ │ │ ├── sun_1a.prefab │ │ │ │ └── sun_1a.prefab.meta │ │ │ ├── ModulsPreFabs.meta │ │ │ ├── ModulsPreFabs │ │ │ │ ├── door_1a.prefab │ │ │ │ ├── door_1a.prefab.meta │ │ │ │ ├── door_2a.prefab │ │ │ │ ├── door_2a.prefab.meta │ │ │ │ ├── logCustoms_1a.prefab │ │ │ │ └── logCustoms_1a.prefab.meta │ │ │ ├── RocksPreFabs.meta │ │ │ ├── RocksPreFabs │ │ │ │ ├── Rock_8a.prefab │ │ │ │ ├── Rock_8a.prefab.meta │ │ │ │ ├── Rock_8b.prefab │ │ │ │ ├── Rock_8b.prefab.meta │ │ │ │ ├── Rock_8b_001.prefab │ │ │ │ ├── Rock_8b_001.prefab.meta │ │ │ │ ├── roadrock_1a.prefab │ │ │ │ ├── roadrock_1a.prefab.meta │ │ │ │ ├── roadrock_2a.prefab │ │ │ │ ├── roadrock_2a.prefab.meta │ │ │ │ ├── roadrock_3a.prefab │ │ │ │ ├── roadrock_3a.prefab.meta │ │ │ │ ├── rock_1a.prefab │ │ │ │ ├── rock_1a.prefab.meta │ │ │ │ ├── rock_1b.prefab │ │ │ │ ├── rock_1b.prefab.meta │ │ │ │ ├── rock_1b_001.prefab │ │ │ │ ├── rock_1b_001.prefab.meta │ │ │ │ ├── rock_2a.prefab │ │ │ │ ├── rock_2a.prefab.meta │ │ │ │ ├── rock_2b.prefab │ │ │ │ ├── rock_2b.prefab.meta │ │ │ │ ├── rock_2b_001.prefab │ │ │ │ ├── rock_2b_001.prefab.meta │ │ │ │ ├── rock_3a.prefab │ │ │ │ ├── rock_3a.prefab.meta │ │ │ │ ├── rock_3b.prefab │ │ │ │ ├── rock_3b.prefab.meta │ │ │ │ ├── rock_3b_001.prefab │ │ │ │ ├── rock_3b_001.prefab.meta │ │ │ │ ├── rock_4a.prefab │ │ │ │ ├── rock_4a.prefab.meta │ │ │ │ ├── rock_5a.prefab │ │ │ │ ├── rock_5a.prefab.meta │ │ │ │ ├── rock_6a.prefab │ │ │ │ ├── rock_6a.prefab.meta │ │ │ │ ├── rock_6b.prefab │ │ │ │ ├── rock_6b.prefab.meta │ │ │ │ ├── rock_6b_001.prefab │ │ │ │ ├── rock_6b_001.prefab.meta │ │ │ │ ├── rock_7a.prefab │ │ │ │ ├── rock_7a.prefab.meta │ │ │ │ ├── rock_7b.prefab │ │ │ │ ├── rock_7b.prefab.meta │ │ │ │ ├── rock_7b_001.prefab │ │ │ │ └── rock_7b_001.prefab.meta │ │ │ ├── TreesPreFabs.meta │ │ │ └── TreesPreFabs │ │ │ │ ├── Tree_4a.prefab │ │ │ │ ├── Tree_4a.prefab.meta │ │ │ │ ├── Tree_4b.prefab │ │ │ │ ├── Tree_4b.prefab.meta │ │ │ │ ├── tree_1a.prefab │ │ │ │ ├── tree_1a.prefab.meta │ │ │ │ ├── tree_1b.prefab │ │ │ │ ├── tree_1b.prefab.meta │ │ │ │ ├── tree_1c.prefab │ │ │ │ ├── tree_1c.prefab.meta │ │ │ │ ├── tree_2a.prefab │ │ │ │ ├── tree_2a.prefab.meta │ │ │ │ ├── tree_2b.prefab │ │ │ │ ├── tree_2b.prefab.meta │ │ │ │ ├── tree_2c.prefab │ │ │ │ ├── tree_2c.prefab.meta │ │ │ │ ├── tree_3a.prefab │ │ │ │ ├── tree_3a.prefab.meta │ │ │ │ ├── tree_3b.prefab │ │ │ │ ├── tree_3b.prefab.meta │ │ │ │ ├── tree_3c.prefab │ │ │ │ ├── tree_3c.prefab.meta │ │ │ │ ├── tree_5a.prefab │ │ │ │ ├── tree_5a.prefab.meta │ │ │ │ ├── tree_5b.prefab │ │ │ │ ├── tree_5b.prefab.meta │ │ │ │ ├── tree_5c.prefab │ │ │ │ ├── tree_5c.prefab.meta │ │ │ │ ├── tree_6a.prefab │ │ │ │ ├── tree_6a.prefab.meta │ │ │ │ ├── tree_6b.prefab │ │ │ │ ├── tree_6b.prefab.meta │ │ │ │ ├── tree_6c.prefab │ │ │ │ └── tree_6c.prefab.meta │ │ │ ├── Rocks.meta │ │ │ ├── Rocks │ │ │ ├── Rock_8a.fbx │ │ │ ├── Rock_8a.fbx.meta │ │ │ ├── Rock_8b.fbx │ │ │ ├── Rock_8b.fbx.meta │ │ │ ├── Rock_8b_001.fbx │ │ │ ├── Rock_8b_001.fbx.meta │ │ │ ├── roadrock_1a.fbx │ │ │ ├── roadrock_1a.fbx.meta │ │ │ ├── roadrock_2a.fbx │ │ │ ├── roadrock_2a.fbx.meta │ │ │ ├── roadrock_3a.fbx │ │ │ ├── roadrock_3a.fbx.meta │ │ │ ├── rock_1a.fbx │ │ │ ├── rock_1a.fbx.meta │ │ │ ├── rock_1b.fbx │ │ │ ├── rock_1b.fbx.meta │ │ │ ├── rock_1b_001.fbx │ │ │ ├── rock_1b_001.fbx.meta │ │ │ ├── rock_2a.fbx │ │ │ ├── rock_2a.fbx.meta │ │ │ ├── rock_2b.fbx │ │ │ ├── rock_2b.fbx.meta │ │ │ ├── rock_2b_001.fbx │ │ │ ├── rock_2b_001.fbx.meta │ │ │ ├── rock_3a.fbx │ │ │ ├── rock_3a.fbx.meta │ │ │ ├── rock_3b.fbx │ │ │ ├── rock_3b.fbx.meta │ │ │ ├── rock_3b_001.fbx │ │ │ ├── rock_3b_001.fbx.meta │ │ │ ├── rock_4a.fbx │ │ │ ├── rock_4a.fbx.meta │ │ │ ├── rock_5a.fbx │ │ │ ├── rock_5a.fbx.meta │ │ │ ├── rock_6a.fbx │ │ │ ├── rock_6a.fbx.meta │ │ │ ├── rock_6b.fbx │ │ │ ├── rock_6b.fbx.meta │ │ │ ├── rock_6b_001.fbx │ │ │ ├── rock_6b_001.fbx.meta │ │ │ ├── rock_7a.fbx │ │ │ ├── rock_7a.fbx.meta │ │ │ ├── rock_7b.fbx │ │ │ ├── rock_7b.fbx.meta │ │ │ ├── rock_7b_001.fbx │ │ │ └── rock_7b_001.fbx.meta │ │ │ ├── Scenes.meta │ │ │ ├── Scenes │ │ │ ├── DemoExample.unity │ │ │ └── DemoExample.unity.meta │ │ │ ├── Textures.meta │ │ │ ├── Textures │ │ │ ├── 1024 palette.png │ │ │ └── 1024 palette.png.meta │ │ │ ├── Trees.meta │ │ │ └── Trees │ │ │ ├── Tree_4a.fbx │ │ │ ├── Tree_4a.fbx.meta │ │ │ ├── Tree_4b.fbx │ │ │ ├── Tree_4b.fbx.meta │ │ │ ├── tree_1a.fbx │ │ │ ├── tree_1a.fbx.meta │ │ │ ├── tree_1b.fbx │ │ │ ├── tree_1b.fbx.meta │ │ │ ├── tree_1c.fbx │ │ │ ├── tree_1c.fbx.meta │ │ │ ├── tree_2a.fbx │ │ │ ├── tree_2a.fbx.meta │ │ │ ├── tree_2b.fbx │ │ │ ├── tree_2b.fbx.meta │ │ │ ├── tree_2c.fbx │ │ │ ├── tree_2c.fbx.meta │ │ │ ├── tree_3a.fbx │ │ │ ├── tree_3a.fbx.meta │ │ │ ├── tree_3b.fbx │ │ │ ├── tree_3b.fbx.meta │ │ │ ├── tree_3c.fbx │ │ │ ├── tree_3c.fbx.meta │ │ │ ├── tree_5a.fbx │ │ │ ├── tree_5a.fbx.meta │ │ │ ├── tree_5b.fbx │ │ │ ├── tree_5b.fbx.meta │ │ │ ├── tree_5c.fbx │ │ │ ├── tree_5c.fbx.meta │ │ │ ├── tree_6a.fbx │ │ │ ├── tree_6a.fbx.meta │ │ │ ├── tree_6b.fbx │ │ │ ├── tree_6b.fbx.meta │ │ │ ├── tree_6c.fbx │ │ │ └── tree_6c.fbx.meta │ ├── Prefabs.meta │ ├── Prefabs │ │ ├── Game.meta │ │ ├── Game │ │ │ ├── End.prefab │ │ │ ├── End.prefab.meta │ │ │ ├── Start.prefab │ │ │ └── Start.prefab.meta │ │ ├── UI.meta │ │ └── UI │ │ │ ├── Restart_button.prefab │ │ │ └── Restart_button.prefab.meta │ ├── Sounds.meta │ ├── Sounds │ │ ├── SFX_ButtonClick.wav │ │ └── SFX_ButtonClick.wav.meta │ ├── Texture.meta │ ├── Texture │ │ ├── Road Texture.png │ │ └── Road Texture.png.meta │ ├── UI.meta │ ├── UI │ │ ├── GUI PRO Kit - Casual Game.meta │ │ ├── GUI PRO Kit - Casual Game │ │ │ ├── ResourcesData.meta │ │ │ └── ResourcesData │ │ │ │ ├── Animatons.meta │ │ │ │ ├── Animatons │ │ │ │ ├── Loading.anim │ │ │ │ ├── Loading.anim.meta │ │ │ │ ├── Loading_Bg.png │ │ │ │ ├── Loading_Bg.png.meta │ │ │ │ ├── Loading_Rotate_White.png │ │ │ │ └── Loading_Rotate_White.png.meta │ │ │ │ ├── Fonts.meta │ │ │ │ ├── Fonts │ │ │ │ ├── LilitaOne-Regular Outline 120 SDF Atlas.png │ │ │ │ ├── LilitaOne-Regular Outline 120 SDF Atlas.png.meta │ │ │ │ ├── LilitaOne-Regular Outline 120 SDF.asset │ │ │ │ ├── LilitaOne-Regular Outline 120 SDF.asset.meta │ │ │ │ ├── LilitaOne-Regular Outline 210 SDF Atlas.png │ │ │ │ ├── LilitaOne-Regular Outline 210 SDF Atlas.png.meta │ │ │ │ ├── LilitaOne-Regular Outline 210 SDF.asset │ │ │ │ ├── LilitaOne-Regular Outline 210 SDF.asset.meta │ │ │ │ ├── LilitaOne-Regular Outline 32 SDF Atlas.png │ │ │ │ ├── LilitaOne-Regular Outline 32 SDF Atlas.png.meta │ │ │ │ ├── LilitaOne-Regular Outline 32 SDF.asset │ │ │ │ ├── LilitaOne-Regular Outline 32 SDF.asset.meta │ │ │ │ ├── LilitaOne-Regular Outline 40 SDF Atlas.png │ │ │ │ ├── LilitaOne-Regular Outline 40 SDF Atlas.png.meta │ │ │ │ ├── LilitaOne-Regular Outline 40 SDF.asset │ │ │ │ ├── LilitaOne-Regular Outline 40 SDF.asset.meta │ │ │ │ ├── LilitaOne-Regular Outline 50 SDF Atlas.png │ │ │ │ ├── LilitaOne-Regular Outline 50 SDF Atlas.png.meta │ │ │ │ ├── LilitaOne-Regular Outline 50 SDF.asset │ │ │ │ ├── LilitaOne-Regular Outline 50 SDF.asset.meta │ │ │ │ ├── LilitaOne-Regular Outline 54 SDF Atlas.png │ │ │ │ ├── LilitaOne-Regular Outline 54 SDF Atlas.png.meta │ │ │ │ ├── LilitaOne-Regular Outline 54 SDF.asset │ │ │ │ ├── LilitaOne-Regular Outline 54 SDF.asset.meta │ │ │ │ ├── LilitaOne-Regular Outline 64 SDF Atlas.png │ │ │ │ ├── LilitaOne-Regular Outline 64 SDF Atlas.png.meta │ │ │ │ ├── LilitaOne-Regular Outline 64 SDF.asset │ │ │ │ ├── LilitaOne-Regular Outline 64 SDF.asset.meta │ │ │ │ ├── LilitaOne-Regular Outline 72 SDF Atlas.png │ │ │ │ ├── LilitaOne-Regular Outline 72 SDF Atlas.png.meta │ │ │ │ ├── LilitaOne-Regular Outline 72 SDF.asset │ │ │ │ ├── LilitaOne-Regular Outline 72 SDF.asset.meta │ │ │ │ ├── LilitaOne-Regular Outline_Extended ASCII_120 SDF Atlas.png │ │ │ │ ├── LilitaOne-Regular Outline_Extended ASCII_120 SDF Atlas.png.meta │ │ │ │ ├── LilitaOne-Regular Outline_Extended ASCII_120 SDF.asset │ │ │ │ ├── LilitaOne-Regular Outline_Extended ASCII_120 SDF.asset.meta │ │ │ │ ├── LilitaOne-Regular Outline_Extended ASCII_210 SDF Atlas.png │ │ │ │ ├── LilitaOne-Regular Outline_Extended ASCII_210 SDF Atlas.png.meta │ │ │ │ ├── LilitaOne-Regular Outline_Extended ASCII_210 SDF.asset │ │ │ │ ├── LilitaOne-Regular Outline_Extended ASCII_210 SDF.asset.meta │ │ │ │ ├── LilitaOne-Regular Outline_Extended ASCII_32 SDF Atlas.png │ │ │ │ ├── LilitaOne-Regular Outline_Extended ASCII_32 SDF Atlas.png.meta │ │ │ │ ├── LilitaOne-Regular Outline_Extended ASCII_32 SDF.asset │ │ │ │ ├── LilitaOne-Regular Outline_Extended ASCII_32 SDF.asset.meta │ │ │ │ ├── LilitaOne-Regular Outline_Extended ASCII_40 SDF Atlas.png │ │ │ │ ├── LilitaOne-Regular Outline_Extended ASCII_40 SDF Atlas.png.meta │ │ │ │ ├── LilitaOne-Regular Outline_Extended ASCII_40 SDF.asset │ │ │ │ ├── LilitaOne-Regular Outline_Extended ASCII_40 SDF.asset.meta │ │ │ │ ├── LilitaOne-Regular Outline_Extended ASCII_50 SDF Atlas.png │ │ │ │ ├── LilitaOne-Regular Outline_Extended ASCII_50 SDF Atlas.png.meta │ │ │ │ ├── LilitaOne-Regular Outline_Extended ASCII_50 SDF.asset │ │ │ │ ├── LilitaOne-Regular Outline_Extended ASCII_50 SDF.asset.meta │ │ │ │ ├── LilitaOne-Regular Outline_Extended ASCII_54 SDF Atlas.png │ │ │ │ ├── LilitaOne-Regular Outline_Extended ASCII_54 SDF Atlas.png.meta │ │ │ │ ├── LilitaOne-Regular Outline_Extended ASCII_54 SDF.asset │ │ │ │ ├── LilitaOne-Regular Outline_Extended ASCII_54 SDF.asset.meta │ │ │ │ ├── LilitaOne-Regular Outline_Extended ASCII_64 SDF Atlas.png │ │ │ │ ├── LilitaOne-Regular Outline_Extended ASCII_64 SDF Atlas.png.meta │ │ │ │ ├── LilitaOne-Regular Outline_Extended ASCII_64 SDF.asset │ │ │ │ ├── LilitaOne-Regular Outline_Extended ASCII_64 SDF.asset.meta │ │ │ │ ├── LilitaOne-Regular Outline_Extended ASCII_72 SDF Atlas.png │ │ │ │ ├── LilitaOne-Regular Outline_Extended ASCII_72 SDF Atlas.png.meta │ │ │ │ ├── LilitaOne-Regular Outline_Extended ASCII_72 SDF.asset │ │ │ │ ├── LilitaOne-Regular Outline_Extended ASCII_72 SDF.asset.meta │ │ │ │ ├── LilitaOne-Regular SDF.asset │ │ │ │ ├── LilitaOne-Regular SDF.asset.meta │ │ │ │ ├── LilitaOne-Regular.ttf │ │ │ │ └── LilitaOne-Regular.ttf.meta │ │ │ │ ├── Particle.meta │ │ │ │ ├── Particle │ │ │ │ ├── Materials.meta │ │ │ │ ├── Materials │ │ │ │ │ ├── fx_Star_l_blurry_blue.mat │ │ │ │ │ ├── fx_Star_l_blurry_blue.mat.meta │ │ │ │ │ ├── fx_Star_l_blurry_green.mat │ │ │ │ │ ├── fx_Star_l_blurry_green.mat.meta │ │ │ │ │ ├── fx_Star_l_blurry_purple.mat │ │ │ │ │ ├── fx_Star_l_blurry_purple.mat.meta │ │ │ │ │ ├── fx_Star_l_blurry_red.mat │ │ │ │ │ ├── fx_Star_l_blurry_red.mat.meta │ │ │ │ │ ├── fx_Star_l_blurry_white.mat │ │ │ │ │ ├── fx_Star_l_blurry_white.mat.meta │ │ │ │ │ ├── fx_Star_l_blurry_yellow.mat │ │ │ │ │ ├── fx_Star_l_blurry_yellow.mat.meta │ │ │ │ │ ├── fx_Star_l_clear_White.mat │ │ │ │ │ ├── fx_Star_l_clear_White.mat.meta │ │ │ │ │ ├── fx_Star_l_clear_blue.mat │ │ │ │ │ ├── fx_Star_l_clear_blue.mat.meta │ │ │ │ │ ├── fx_Star_l_clear_green.mat │ │ │ │ │ ├── fx_Star_l_clear_green.mat.meta │ │ │ │ │ ├── fx_Star_l_clear_purple.mat │ │ │ │ │ ├── fx_Star_l_clear_purple.mat.meta │ │ │ │ │ ├── fx_Star_l_clear_red.mat │ │ │ │ │ ├── fx_Star_l_clear_red.mat.meta │ │ │ │ │ ├── fx_Star_l_clear_yellow.mat │ │ │ │ │ ├── fx_Star_l_clear_yellow.mat.meta │ │ │ │ │ ├── fx_circle.mat │ │ │ │ │ ├── fx_circle.mat.meta │ │ │ │ │ ├── fx_circle_glow01.mat │ │ │ │ │ ├── fx_circle_glow01.mat.meta │ │ │ │ │ ├── fx_circle_glow02.mat │ │ │ │ │ ├── fx_circle_glow02.mat.meta │ │ │ │ │ ├── fx_circle_glow03.mat │ │ │ │ │ ├── fx_circle_glow03.mat.meta │ │ │ │ │ ├── fx_circle_glow04.mat │ │ │ │ │ ├── fx_circle_glow04.mat.meta │ │ │ │ │ ├── fx_circle_line01.mat │ │ │ │ │ ├── fx_circle_line01.mat.meta │ │ │ │ │ ├── fx_circle_line02.mat │ │ │ │ │ ├── fx_circle_line02.mat.meta │ │ │ │ │ ├── fx_circle_line03_blue.mat │ │ │ │ │ ├── fx_circle_line03_blue.mat.meta │ │ │ │ │ ├── fx_light01.mat │ │ │ │ │ ├── fx_light01.mat.meta │ │ │ │ │ ├── fx_light02_line.mat │ │ │ │ │ ├── fx_light02_line.mat.meta │ │ │ │ │ ├── fx_light03_line_small.mat │ │ │ │ │ ├── fx_light03_line_small.mat.meta │ │ │ │ │ ├── fx_star_s_blurry_blue.mat │ │ │ │ │ ├── fx_star_s_blurry_blue.mat.meta │ │ │ │ │ ├── fx_star_s_blurry_green.mat │ │ │ │ │ ├── fx_star_s_blurry_green.mat.meta │ │ │ │ │ ├── fx_star_s_blurry_purple.mat │ │ │ │ │ ├── fx_star_s_blurry_purple.mat.meta │ │ │ │ │ ├── fx_star_s_blurry_red.mat │ │ │ │ │ ├── fx_star_s_blurry_red.mat.meta │ │ │ │ │ ├── fx_star_s_blurry_white.mat │ │ │ │ │ ├── fx_star_s_blurry_white.mat.meta │ │ │ │ │ ├── fx_star_s_blurry_yellow.mat │ │ │ │ │ ├── fx_star_s_blurry_yellow.mat.meta │ │ │ │ │ ├── fx_star_s_clear_blue.mat │ │ │ │ │ ├── fx_star_s_clear_blue.mat.meta │ │ │ │ │ ├── fx_star_s_clear_green.mat │ │ │ │ │ ├── fx_star_s_clear_green.mat.meta │ │ │ │ │ ├── fx_star_s_clear_pruple.mat │ │ │ │ │ ├── fx_star_s_clear_pruple.mat.meta │ │ │ │ │ ├── fx_star_s_clear_red.mat │ │ │ │ │ ├── fx_star_s_clear_red.mat.meta │ │ │ │ │ ├── fx_star_s_clear_white.mat │ │ │ │ │ ├── fx_star_s_clear_white.mat.meta │ │ │ │ │ ├── fx_star_s_clear_yellow.mat │ │ │ │ │ └── fx_star_s_clear_yellow.mat.meta │ │ │ │ ├── Texture.meta │ │ │ │ └── Texture │ │ │ │ │ ├── fx_box_blur.png │ │ │ │ │ ├── fx_box_blur.png.meta │ │ │ │ │ ├── fx_circle.png │ │ │ │ │ ├── fx_circle.png.meta │ │ │ │ │ ├── fx_circle_blur 1.png │ │ │ │ │ ├── fx_circle_blur 1.png.meta │ │ │ │ │ ├── fx_circle_blur.png │ │ │ │ │ ├── fx_circle_blur.png.meta │ │ │ │ │ ├── fx_circle_glow.png │ │ │ │ │ ├── fx_circle_glow.png.meta │ │ │ │ │ ├── fx_circle_line_blue.png │ │ │ │ │ ├── fx_circle_line_blue.png.meta │ │ │ │ │ ├── fx_glow.png │ │ │ │ │ ├── fx_glow.png.meta │ │ │ │ │ ├── fx_glow_small.png │ │ │ │ │ ├── fx_glow_small.png.meta │ │ │ │ │ ├── fx_rotate_line.png │ │ │ │ │ ├── fx_rotate_line.png.meta │ │ │ │ │ ├── fx_rotate_line_small.png │ │ │ │ │ ├── fx_rotate_line_small.png.meta │ │ │ │ │ ├── fx_special_particle_blue.png │ │ │ │ │ ├── fx_special_particle_blue.png.meta │ │ │ │ │ ├── fx_special_particle_green.png │ │ │ │ │ ├── fx_special_particle_green.png.meta │ │ │ │ │ ├── fx_special_particle_purple.png │ │ │ │ │ ├── fx_special_particle_purple.png.meta │ │ │ │ │ ├── fx_special_particle_red.png │ │ │ │ │ ├── fx_special_particle_red.png.meta │ │ │ │ │ ├── fx_special_particle_white.png │ │ │ │ │ ├── fx_special_particle_white.png.meta │ │ │ │ │ ├── fx_special_particle_yellow.png │ │ │ │ │ ├── fx_special_particle_yellow.png.meta │ │ │ │ │ ├── fx_star_blue.png │ │ │ │ │ ├── fx_star_blue.png.meta │ │ │ │ │ ├── fx_star_green.png │ │ │ │ │ ├── fx_star_green.png.meta │ │ │ │ │ ├── fx_star_light.png │ │ │ │ │ ├── fx_star_light.png.meta │ │ │ │ │ ├── fx_star_purple.png │ │ │ │ │ ├── fx_star_purple.png.meta │ │ │ │ │ ├── fx_star_red.png │ │ │ │ │ ├── fx_star_red.png.meta │ │ │ │ │ ├── fx_star_white.png │ │ │ │ │ ├── fx_star_white.png.meta │ │ │ │ │ ├── fx_star_yellow.png │ │ │ │ │ └── fx_star_yellow.png.meta │ │ │ │ ├── Shader & Materials.meta │ │ │ │ ├── Shader & Materials │ │ │ │ ├── MobileAdditive.shader │ │ │ │ ├── MobileAdditive.shader.meta │ │ │ │ ├── UIAdditive.mat │ │ │ │ ├── UIAdditive.mat.meta │ │ │ │ ├── UIAdditive.shader │ │ │ │ └── UIAdditive.shader.meta │ │ │ │ ├── Sprite.meta │ │ │ │ └── Sprite │ │ │ │ ├── Component.meta │ │ │ │ ├── Component │ │ │ │ ├── Button.meta │ │ │ │ ├── Button │ │ │ │ │ ├── Btn_MainButton_Blue.Png │ │ │ │ │ ├── Btn_MainButton_Blue.Png.meta │ │ │ │ │ ├── Btn_MainButton_Dark.Png │ │ │ │ │ ├── Btn_MainButton_Dark.Png.meta │ │ │ │ │ ├── Btn_MainButton_Gray.Png │ │ │ │ │ ├── Btn_MainButton_Gray.Png.meta │ │ │ │ │ ├── Btn_MainButton_Green.Png │ │ │ │ │ ├── Btn_MainButton_Green.Png.meta │ │ │ │ │ ├── Btn_MainButton_Orange.Png │ │ │ │ │ ├── Btn_MainButton_Orange.Png.meta │ │ │ │ │ ├── Btn_MainButton_Purple.Png │ │ │ │ │ ├── Btn_MainButton_Purple.Png.meta │ │ │ │ │ ├── Btn_MainButton_Red.Png │ │ │ │ │ ├── Btn_MainButton_Red.Png.meta │ │ │ │ │ ├── Btn_MainButton_Sky.Png │ │ │ │ │ ├── Btn_MainButton_Sky.Png.meta │ │ │ │ │ ├── Btn_MainButton_White.Png │ │ │ │ │ ├── Btn_MainButton_White.Png.meta │ │ │ │ │ ├── Btn_MainButton_Yellow.Png │ │ │ │ │ ├── Btn_MainButton_Yellow.Png.meta │ │ │ │ │ ├── Btn_OtherButton_Circle01_d.png │ │ │ │ │ ├── Btn_OtherButton_Circle01_d.png.meta │ │ │ │ │ ├── Btn_OtherButton_Circle01_n.png │ │ │ │ │ ├── Btn_OtherButton_Circle01_n.png.meta │ │ │ │ │ ├── Btn_OtherButton_Circle02.png │ │ │ │ │ ├── Btn_OtherButton_Circle02.png.meta │ │ │ │ │ ├── Btn_OtherButton_Hexagon01_Blue.png │ │ │ │ │ ├── Btn_OtherButton_Hexagon01_Blue.png.meta │ │ │ │ │ ├── Btn_OtherButton_Hexagon01_Red.png │ │ │ │ │ ├── Btn_OtherButton_Hexagon01_Red.png.meta │ │ │ │ │ ├── Btn_OtherButton_Polygon01.png │ │ │ │ │ ├── Btn_OtherButton_Polygon01.png.meta │ │ │ │ │ ├── Btn_OtherButton_Polygon02.png │ │ │ │ │ ├── Btn_OtherButton_Polygon02.png.meta │ │ │ │ │ ├── Btn_OtherButton_SideButton01_Left.png │ │ │ │ │ ├── Btn_OtherButton_SideButton01_Left.png.meta │ │ │ │ │ ├── Btn_OtherButton_SideButton02_Right.png │ │ │ │ │ ├── Btn_OtherButton_SideButton02_Right.png.meta │ │ │ │ │ ├── Btn_OtherButton_Square01_Blue.png │ │ │ │ │ ├── Btn_OtherButton_Square01_Blue.png.meta │ │ │ │ │ ├── Btn_OtherButton_Square01_Yellow.png │ │ │ │ │ ├── Btn_OtherButton_Square01_Yellow.png.meta │ │ │ │ │ ├── Btn_OtherButton_Square02.png │ │ │ │ │ ├── Btn_OtherButton_Square02.png.meta │ │ │ │ │ ├── Btn_OtherButton_Square03_Blue.png │ │ │ │ │ ├── Btn_OtherButton_Square03_Blue.png.meta │ │ │ │ │ ├── Btn_OtherButton_Square03_Purple.png │ │ │ │ │ ├── Btn_OtherButton_Square03_Purple.png.meta │ │ │ │ │ ├── Btn_OtherButton_Square04.png │ │ │ │ │ ├── Btn_OtherButton_Square04.png.meta │ │ │ │ │ ├── Btn_OtherButton_Square05.png │ │ │ │ │ ├── Btn_OtherButton_Square05.png.meta │ │ │ │ │ ├── Btn_OtherButton_Square06.png │ │ │ │ │ ├── Btn_OtherButton_Square06.png.meta │ │ │ │ │ ├── Btn_OtherButton_Square07.png │ │ │ │ │ ├── Btn_OtherButton_Square07.png.meta │ │ │ │ │ ├── Btn_OtherButton_Square08.png │ │ │ │ │ └── Btn_OtherButton_Square08.png.meta │ │ │ │ ├── Frame.meta │ │ │ │ ├── Frame │ │ │ │ │ ├── Frame_BarFrame_Bottom01_Navy.png │ │ │ │ │ ├── Frame_BarFrame_Bottom01_Navy.png.meta │ │ │ │ │ ├── Frame_BarFrame_Bottom02_White.png │ │ │ │ │ ├── Frame_BarFrame_Bottom02_White.png.meta │ │ │ │ │ ├── Frame_BarFrame_Top01_Navy.png │ │ │ │ │ ├── Frame_BarFrame_Top01_Navy.png.meta │ │ │ │ │ ├── Frame_BarFrame_Top02_Navy.png │ │ │ │ │ ├── Frame_BarFrame_Top02_Navy.png.meta │ │ │ │ │ ├── Frame_BasicFrame_Circle01.png │ │ │ │ │ ├── Frame_BasicFrame_Circle01.png.meta │ │ │ │ │ ├── Frame_BasicFrame_Circle02.png │ │ │ │ │ ├── Frame_BasicFrame_Circle02.png.meta │ │ │ │ │ ├── Frame_BasicFrame_Gradient01.png │ │ │ │ │ ├── Frame_BasicFrame_Gradient01.png.meta │ │ │ │ │ ├── Frame_BasicFrame_Square01.png │ │ │ │ │ ├── Frame_BasicFrame_Square01.png.meta │ │ │ │ │ ├── Frame_BasicFrame_Square02.png │ │ │ │ │ ├── Frame_BasicFrame_Square02.png.meta │ │ │ │ │ ├── Frame_BasicFrame_Square022.png │ │ │ │ │ ├── Frame_BasicFrame_Square022.png.meta │ │ │ │ │ ├── Frame_BasicFrame_Square03.png │ │ │ │ │ ├── Frame_BasicFrame_Square03.png.meta │ │ │ │ │ ├── Frame_BasicFrame_Square04.png │ │ │ │ │ ├── Frame_BasicFrame_Square04.png.meta │ │ │ │ │ ├── Frame_BasicFrame_Square044.png │ │ │ │ │ ├── Frame_BasicFrame_Square044.png.meta │ │ │ │ │ ├── Frame_BasicFrame_Square05.png │ │ │ │ │ ├── Frame_BasicFrame_Square05.png.meta │ │ │ │ │ ├── Frame_BasicFrame_Square06.png │ │ │ │ │ ├── Frame_BasicFrame_Square06.png.meta │ │ │ │ │ ├── Frame_BasicFrame_Square07.png │ │ │ │ │ ├── Frame_BasicFrame_Square07.png.meta │ │ │ │ │ ├── Frame_BasicFrame_Square08.png │ │ │ │ │ ├── Frame_BasicFrame_Square08.png.meta │ │ │ │ │ ├── Frame_BasicFrame_Square09.png │ │ │ │ │ ├── Frame_BasicFrame_Square09.png.meta │ │ │ │ │ ├── Frame_CardFrame00_BackGlow.png │ │ │ │ │ ├── Frame_CardFrame00_BackGlow.png.meta │ │ │ │ │ ├── Frame_CardFrame00_Base.png │ │ │ │ │ ├── Frame_CardFrame00_Base.png.meta │ │ │ │ │ ├── Frame_CardFrame00_BottomGlow.png │ │ │ │ │ ├── Frame_CardFrame00_BottomGlow.png.meta │ │ │ │ │ ├── Frame_CardFrame01_Frame.png │ │ │ │ │ ├── Frame_CardFrame01_Frame.png.meta │ │ │ │ │ ├── Frame_CardFrame01_Icon.png │ │ │ │ │ ├── Frame_CardFrame01_Icon.png.meta │ │ │ │ │ ├── Frame_CardFrame02_Frame.png │ │ │ │ │ ├── Frame_CardFrame02_Frame.png.meta │ │ │ │ │ ├── Frame_CardFrame03_Blue.png │ │ │ │ │ ├── Frame_CardFrame03_Blue.png.meta │ │ │ │ │ ├── Frame_CardFrame03_Dim.png │ │ │ │ │ ├── Frame_CardFrame03_Dim.png.meta │ │ │ │ │ ├── Frame_CardFrame03_Green.png │ │ │ │ │ ├── Frame_CardFrame03_Green.png.meta │ │ │ │ │ ├── Frame_CardFrame03_Orange.png │ │ │ │ │ ├── Frame_CardFrame03_Orange.png.meta │ │ │ │ │ ├── Frame_CardFrame03_Purple.png │ │ │ │ │ ├── Frame_CardFrame03_Purple.png.meta │ │ │ │ │ ├── Frame_CardFrame04_d.png │ │ │ │ │ ├── Frame_CardFrame04_d.png.meta │ │ │ │ │ ├── Frame_CardFrame04_n.png │ │ │ │ │ ├── Frame_CardFrame04_n.png.meta │ │ │ │ │ ├── Frame_CardFrame04_s.png │ │ │ │ │ ├── Frame_CardFrame04_s.png.meta │ │ │ │ │ ├── Frame_ItemFrame000_Count.png │ │ │ │ │ ├── Frame_ItemFrame000_Count.png.meta │ │ │ │ │ ├── Frame_ItemFrame01_Color_Blue.png │ │ │ │ │ ├── Frame_ItemFrame01_Color_Blue.png.meta │ │ │ │ │ ├── Frame_ItemFrame01_Color_Brown.png │ │ │ │ │ ├── Frame_ItemFrame01_Color_Brown.png.meta │ │ │ │ │ ├── Frame_ItemFrame01_Color_Green.png │ │ │ │ │ ├── Frame_ItemFrame01_Color_Green.png.meta │ │ │ │ │ ├── Frame_ItemFrame01_Color_Purple.png │ │ │ │ │ ├── Frame_ItemFrame01_Color_Purple.png.meta │ │ │ │ │ ├── Frame_ItemFrame01_Color_Red.png │ │ │ │ │ ├── Frame_ItemFrame01_Color_Red.png.meta │ │ │ │ │ ├── Frame_ItemFrame01_Color_Yellow.png │ │ │ │ │ ├── Frame_ItemFrame01_Color_Yellow.png.meta │ │ │ │ │ ├── Frame_ItemFrame01_Empty.png │ │ │ │ │ ├── Frame_ItemFrame01_Empty.png.meta │ │ │ │ │ ├── Frame_ItemFrame01_f.png │ │ │ │ │ ├── Frame_ItemFrame01_f.png.meta │ │ │ │ │ ├── Frame_ItemFrame02_Color_Gay.png │ │ │ │ │ ├── Frame_ItemFrame02_Color_Gay.png.meta │ │ │ │ │ ├── Frame_ItemFrame02_Color_Green.png │ │ │ │ │ ├── Frame_ItemFrame02_Color_Green.png.meta │ │ │ │ │ ├── Frame_ItemFrame02_Color_Purple.png │ │ │ │ │ ├── Frame_ItemFrame02_Color_Purple.png.meta │ │ │ │ │ ├── Frame_ItemFrame02_Color_Yellow.png │ │ │ │ │ ├── Frame_ItemFrame02_Color_Yellow.png.meta │ │ │ │ │ ├── Frame_ItemFrame03_Navy.png │ │ │ │ │ ├── Frame_ItemFrame03_Navy.png.meta │ │ │ │ │ ├── Frame_ItemFrame03_Purple.png │ │ │ │ │ ├── Frame_ItemFrame03_Purple.png.meta │ │ │ │ │ ├── Frame_ItemFrame03_f.png │ │ │ │ │ ├── Frame_ItemFrame03_f.png.meta │ │ │ │ │ ├── Frame_ItemFrame04_d.png │ │ │ │ │ ├── Frame_ItemFrame04_d.png.meta │ │ │ │ │ ├── Frame_ItemFrame04_n.png │ │ │ │ │ ├── Frame_ItemFrame04_n.png.meta │ │ │ │ │ ├── Frame_ItemFrame05_d.png │ │ │ │ │ ├── Frame_ItemFrame05_d.png.meta │ │ │ │ │ ├── Frame_ItemFrame05_n.png │ │ │ │ │ ├── Frame_ItemFrame05_n.png.meta │ │ │ │ │ ├── Frame_ItemFrame06_Blue.png │ │ │ │ │ ├── Frame_ItemFrame06_Blue.png.meta │ │ │ │ │ ├── Frame_ItemFrame06_Pink.png │ │ │ │ │ ├── Frame_ItemFrame06_Pink.png.meta │ │ │ │ │ ├── Frame_ItemFrame06_Yellow.png │ │ │ │ │ ├── Frame_ItemFrame06_Yellow.png.meta │ │ │ │ │ ├── Frame_ListFrame01_00.png │ │ │ │ │ ├── Frame_ListFrame01_00.png.meta │ │ │ │ │ ├── Frame_ListFrame01_01_Blue.png │ │ │ │ │ ├── Frame_ListFrame01_01_Blue.png.meta │ │ │ │ │ ├── Frame_ListFrame01_01_Green.png │ │ │ │ │ ├── Frame_ListFrame01_01_Green.png.meta │ │ │ │ │ ├── Frame_ListFrame02.png │ │ │ │ │ ├── Frame_ListFrame02.png.meta │ │ │ │ │ ├── Frame_ListFrame02_s.png │ │ │ │ │ ├── Frame_ListFrame02_s.png.meta │ │ │ │ │ ├── Frame_ListFrame03.png │ │ │ │ │ ├── Frame_ListFrame03.png.meta │ │ │ │ │ ├── Frame_ListFrame04.png │ │ │ │ │ ├── Frame_ListFrame04.png.meta │ │ │ │ │ ├── Frame_ListFrame05.png │ │ │ │ │ ├── Frame_ListFrame05.png.meta │ │ │ │ │ ├── Frame_ListFrame06_00_n.png │ │ │ │ │ ├── Frame_ListFrame06_00_n.png.meta │ │ │ │ │ ├── Frame_ListFrame06_00_s.png │ │ │ │ │ ├── Frame_ListFrame06_00_s.png.meta │ │ │ │ │ ├── Frame_ListFrame06_01_Blue.png │ │ │ │ │ ├── Frame_ListFrame06_01_Blue.png.meta │ │ │ │ │ ├── Frame_ListFrame06_01_Green.png │ │ │ │ │ ├── Frame_ListFrame06_01_Green.png.meta │ │ │ │ │ ├── Frame_ListFrame07_n.png │ │ │ │ │ ├── Frame_ListFrame07_n.png.meta │ │ │ │ │ ├── Frame_ListFrame07_s.png │ │ │ │ │ ├── Frame_ListFrame07_s.png.meta │ │ │ │ │ ├── Frame_ListFrame08_n.png │ │ │ │ │ ├── Frame_ListFrame08_n.png.meta │ │ │ │ │ ├── Frame_ListFrame08_s.png │ │ │ │ │ ├── Frame_ListFrame08_s.png.meta │ │ │ │ │ ├── Frame_ListFrame09_d.png │ │ │ │ │ ├── Frame_ListFrame09_d.png.meta │ │ │ │ │ ├── Frame_ListFrame09_n.png │ │ │ │ │ ├── Frame_ListFrame09_n.png.meta │ │ │ │ │ ├── Frame_ListFrame11_Green.png │ │ │ │ │ ├── Frame_ListFrame11_Green.png.meta │ │ │ │ │ ├── Frame_ListFrame11_Purple.png │ │ │ │ │ ├── Frame_ListFrame11_Purple.png.meta │ │ │ │ │ ├── Frame_ListFrame12_Blue.png │ │ │ │ │ ├── Frame_ListFrame12_Blue.png.meta │ │ │ │ │ ├── Frame_ListFrame12_Purple.png │ │ │ │ │ ├── Frame_ListFrame12_Purple.png.meta │ │ │ │ │ ├── Frame_ListFrame12_Yellow.png │ │ │ │ │ ├── Frame_ListFrame12_Yellow.png.meta │ │ │ │ │ ├── Frame_ListFrame13_d.png │ │ │ │ │ ├── Frame_ListFrame13_d.png.meta │ │ │ │ │ ├── Frame_ListFrame13_n_Blue.png │ │ │ │ │ ├── Frame_ListFrame13_n_Blue.png.meta │ │ │ │ │ ├── Frame_ListFrame13_n_Purple.png │ │ │ │ │ ├── Frame_ListFrame13_n_Purple.png.meta │ │ │ │ │ ├── Frame_ListFrame14_d.png │ │ │ │ │ ├── Frame_ListFrame14_d.png.meta │ │ │ │ │ ├── Frame_ListFrame14_n_Blue.png │ │ │ │ │ ├── Frame_ListFrame14_n_Blue.png.meta │ │ │ │ │ ├── Frame_ListFrame14_n_Purple.png │ │ │ │ │ ├── Frame_ListFrame14_n_Purple.png.meta │ │ │ │ │ ├── Frame_ListFrame14_s.png │ │ │ │ │ ├── Frame_ListFrame14_s.png.meta │ │ │ │ │ ├── Frame_ListFrame_Square04_f.png │ │ │ │ │ ├── Frame_ListFrame_Square04_f.png.meta │ │ │ │ │ ├── Frame_SideFrame_Bottom.png │ │ │ │ │ ├── Frame_SideFrame_Bottom.png.meta │ │ │ │ │ ├── Frame_SideFrame_Left.png │ │ │ │ │ ├── Frame_SideFrame_Left.png.meta │ │ │ │ │ ├── Frame_SideFrame_Top.png │ │ │ │ │ ├── Frame_SideFrame_Top.png.meta │ │ │ │ │ ├── Frame_SpeechBubble01.png │ │ │ │ │ ├── Frame_SpeechBubble01.png.meta │ │ │ │ │ ├── Frame_SpeechBubble01_Icon1.png │ │ │ │ │ ├── Frame_SpeechBubble01_Icon1.png.meta │ │ │ │ │ ├── Frame_SpeechBubble01_Icon2.png │ │ │ │ │ ├── Frame_SpeechBubble01_Icon2.png.meta │ │ │ │ │ ├── Frame_SpeechBubble02_Blue.png │ │ │ │ │ ├── Frame_SpeechBubble02_Blue.png.meta │ │ │ │ │ ├── Frame_SpeechBubble03_Pink.png │ │ │ │ │ ├── Frame_SpeechBubble03_Pink.png.meta │ │ │ │ │ ├── Frame_SpeechBubble04_White.png │ │ │ │ │ ├── Frame_SpeechBubble04_White.png.meta │ │ │ │ │ ├── Frame_StageFrame_Line.png │ │ │ │ │ ├── Frame_StageFrame_Line.png.meta │ │ │ │ │ ├── Frame_StageFrame_d.png │ │ │ │ │ ├── Frame_StageFrame_d.png.meta │ │ │ │ │ ├── Frame_StageFrame_n.png │ │ │ │ │ ├── Frame_StageFrame_n.png.meta │ │ │ │ │ ├── Frame_StageFrame_n_Blue.png │ │ │ │ │ ├── Frame_StageFrame_n_Blue.png.meta │ │ │ │ │ ├── Frame_StageFrame_n_Purple.png │ │ │ │ │ ├── Frame_StageFrame_n_Purple.png.meta │ │ │ │ │ ├── Frame_StageFrame_n_Yellow.png │ │ │ │ │ ├── Frame_StageFrame_n_Yellow.png.meta │ │ │ │ │ ├── Frame_StageFrame_s.png │ │ │ │ │ ├── Frame_StageFrame_s.png.meta │ │ │ │ │ ├── Frame_TableFrame01_Frame.png │ │ │ │ │ ├── Frame_TableFrame01_Frame.png.meta │ │ │ │ │ ├── Frame_TableFrame01_Line.png │ │ │ │ │ ├── Frame_TableFrame01_Line.png.meta │ │ │ │ │ ├── Frame_TableFrame02.png │ │ │ │ │ ├── Frame_TableFrame02.png.meta │ │ │ │ │ ├── Frame_UserPictureFrame_Frame.png │ │ │ │ │ ├── Frame_UserPictureFrame_Frame.png.meta │ │ │ │ │ ├── Frame_UserPictureFrame_InBase.png │ │ │ │ │ ├── Frame_UserPictureFrame_InBase.png.meta │ │ │ │ │ ├── LineFrame_TitleLine_Left.png │ │ │ │ │ ├── LineFrame_TitleLine_Left.png.meta │ │ │ │ │ ├── LineFrame_TitleLine_Right.png │ │ │ │ │ └── LineFrame_TitleLine_Right.png.meta │ │ │ │ ├── Label.meta │ │ │ │ ├── Label │ │ │ │ │ ├── Label_BasicLabel01_White.png │ │ │ │ │ ├── Label_BasicLabel01_White.png.meta │ │ │ │ │ ├── Label_BasicLabel02_White.png │ │ │ │ │ ├── Label_BasicLabel02_White.png.meta │ │ │ │ │ ├── Label_BasicLabel03_White.png │ │ │ │ │ ├── Label_BasicLabel03_White.png.meta │ │ │ │ │ ├── Label_LeftLabel01_Blue.png │ │ │ │ │ ├── Label_LeftLabel01_Blue.png.meta │ │ │ │ │ ├── Label_LeftLabel01_Green.png │ │ │ │ │ ├── Label_LeftLabel01_Green.png.meta │ │ │ │ │ ├── Label_LeftLabel01_Orange.png │ │ │ │ │ ├── Label_LeftLabel01_Orange.png.meta │ │ │ │ │ ├── Label_LeftLabel01_Purple.png │ │ │ │ │ ├── Label_LeftLabel01_Purple.png.meta │ │ │ │ │ ├── Label_LeftLabel02.png │ │ │ │ │ ├── Label_LeftLabel02.png.meta │ │ │ │ │ ├── Label_SpeechBubbleLabel01.png │ │ │ │ │ ├── Label_SpeechBubbleLabel01.png.meta │ │ │ │ │ ├── Label_SpeechBubbleLabel02.png │ │ │ │ │ ├── Label_SpeechBubbleLabel02.png.meta │ │ │ │ │ ├── Label_TitleFlag_Blue.png │ │ │ │ │ ├── Label_TitleFlag_Blue.png.meta │ │ │ │ │ ├── Label_TitleFlag_Green.png │ │ │ │ │ ├── Label_TitleFlag_Green.png.meta │ │ │ │ │ ├── Label_TitleFlag_Orange.png │ │ │ │ │ ├── Label_TitleFlag_Orange.png.meta │ │ │ │ │ ├── Label_TitleFlag_Purple.png │ │ │ │ │ ├── Label_TitleFlag_Purple.png.meta │ │ │ │ │ ├── Label_TitleFlag_Red.png │ │ │ │ │ ├── Label_TitleFlag_Red.png.meta │ │ │ │ │ ├── Label_TitleRibbon_00_Icon.png │ │ │ │ │ ├── Label_TitleRibbon_00_Icon.png.meta │ │ │ │ │ ├── Label_TitleRibbon_Green.png │ │ │ │ │ ├── Label_TitleRibbon_Green.png.meta │ │ │ │ │ ├── Label_TitleRibbon_Orange.png │ │ │ │ │ ├── Label_TitleRibbon_Orange.png.meta │ │ │ │ │ ├── Label_TitleRibbon_Yellow.png │ │ │ │ │ └── Label_TitleRibbon_Yellow.png.meta │ │ │ │ ├── Popup.meta │ │ │ │ ├── Popup │ │ │ │ │ ├── Popup_00_BottomGlow.png │ │ │ │ │ ├── Popup_00_BottomGlow.png.meta │ │ │ │ │ ├── Popup_00_Glow_white.png │ │ │ │ │ ├── Popup_00_Glow_white.png.meta │ │ │ │ │ ├── Popup_00_LIne.png │ │ │ │ │ ├── Popup_00_LIne.png.meta │ │ │ │ │ ├── Popup_00_TitleLIne.png │ │ │ │ │ ├── Popup_00_TitleLIne.png.meta │ │ │ │ │ ├── Popup_Frame01_Navy.png │ │ │ │ │ ├── Popup_Frame01_Navy.png.meta │ │ │ │ │ ├── Popup_Frame01_Purple.png │ │ │ │ │ ├── Popup_Frame01_Purple.png.meta │ │ │ │ │ ├── Popup_Frame02.png │ │ │ │ │ ├── Popup_Frame02.png.meta │ │ │ │ │ ├── Popup_Frame03.png │ │ │ │ │ ├── Popup_Frame03.png.meta │ │ │ │ │ ├── Popup_MiddeFrame01.png │ │ │ │ │ ├── Popup_MiddeFrame01.png.meta │ │ │ │ │ ├── Popup_MiddeFrame02.png │ │ │ │ │ ├── Popup_MiddeFrame02.png.meta │ │ │ │ │ ├── Popup_SideFrame01.png │ │ │ │ │ ├── Popup_SideFrame01.png.meta │ │ │ │ │ ├── Popup_SideFrame02.png │ │ │ │ │ ├── Popup_SideFrame02.png.meta │ │ │ │ │ ├── Popup_SideFrame02_BottomGlow.png │ │ │ │ │ ├── Popup_SideFrame02_BottomGlow.png.meta │ │ │ │ │ ├── Popup_SideFrame02_TopBar.png │ │ │ │ │ ├── Popup_SideFrame02_TopBar.png.meta │ │ │ │ │ ├── Popup_SideFrame02_TopGlow.png │ │ │ │ │ ├── Popup_SideFrame02_TopGlow.png.meta │ │ │ │ │ ├── Popup_TopFrame.png │ │ │ │ │ └── Popup_TopFrame.png.meta │ │ │ │ ├── Slider.meta │ │ │ │ └── Slider │ │ │ │ │ ├── Slider01_Fill.png │ │ │ │ │ ├── Slider01_Fill.png.meta │ │ │ │ │ ├── Slider01_Fill_Mask.png │ │ │ │ │ ├── Slider01_Fill_Mask.png.meta │ │ │ │ │ ├── Slider01_Frame.png │ │ │ │ │ ├── Slider01_Frame.png.meta │ │ │ │ │ ├── Slider01_FrameLine.png │ │ │ │ │ ├── Slider01_FrameLine.png.meta │ │ │ │ │ ├── Slider01_Icon1.png │ │ │ │ │ ├── Slider01_Icon1.png.meta │ │ │ │ │ ├── Slider01_icon2.png │ │ │ │ │ ├── Slider01_icon2.png.meta │ │ │ │ │ ├── Slider02_Fill.png │ │ │ │ │ ├── Slider02_Fill.png.meta │ │ │ │ │ ├── Slider02_Fill_Mask.png │ │ │ │ │ ├── Slider02_Fill_Mask.png.meta │ │ │ │ │ ├── Slider02_Frame.png │ │ │ │ │ ├── Slider02_Frame.png.meta │ │ │ │ │ ├── Slider02_FrameLine.png │ │ │ │ │ ├── Slider02_FrameLine.png.meta │ │ │ │ │ ├── Slider02_Icon1.png │ │ │ │ │ ├── Slider02_Icon1.png.meta │ │ │ │ │ ├── Slider02_Icon2.png │ │ │ │ │ ├── Slider02_Icon2.png.meta │ │ │ │ │ ├── Slider03_Fill.png │ │ │ │ │ ├── Slider03_Fill.png.meta │ │ │ │ │ ├── Slider03_Fill_Focus.png │ │ │ │ │ ├── Slider03_Fill_Focus.png.meta │ │ │ │ │ ├── Slider03_Frame.png │ │ │ │ │ ├── Slider03_Frame.png.meta │ │ │ │ │ ├── Slider03_Icon1.png │ │ │ │ │ ├── Slider03_Icon1.png.meta │ │ │ │ │ ├── Slider03_Icon2.png │ │ │ │ │ ├── Slider03_Icon2.png.meta │ │ │ │ │ ├── Slider04_Fill_Mask.png │ │ │ │ │ ├── Slider04_Fill_Mask.png.meta │ │ │ │ │ ├── Slider04_Fill_Orange.png │ │ │ │ │ ├── Slider04_Fill_Orange.png.meta │ │ │ │ │ ├── Slider04_Fill_Yellow.png │ │ │ │ │ ├── Slider04_Fill_Yellow.png.meta │ │ │ │ │ ├── Slider04_Frame.png │ │ │ │ │ ├── Slider04_Frame.png.meta │ │ │ │ │ ├── Slider04_Icon.png │ │ │ │ │ ├── Slider04_Icon.png.meta │ │ │ │ │ ├── Slider05_Fill.png │ │ │ │ │ ├── Slider05_Fill.png.meta │ │ │ │ │ ├── Slider05_Frame.png │ │ │ │ │ ├── Slider05_Frame.png.meta │ │ │ │ │ ├── Slider05_Icon.png │ │ │ │ │ ├── Slider05_Icon.png.meta │ │ │ │ │ ├── Slider06_Fill.png │ │ │ │ │ ├── Slider06_Fill.png.meta │ │ │ │ │ ├── Slider06_Frame.png │ │ │ │ │ ├── Slider06_Frame.png.meta │ │ │ │ │ ├── Slider06_Icon.png │ │ │ │ │ ├── Slider06_Icon.png.meta │ │ │ │ │ ├── Slider07_Fill_Blue.png │ │ │ │ │ ├── Slider07_Fill_Blue.png.meta │ │ │ │ │ ├── Slider07_Fill_Green.png │ │ │ │ │ ├── Slider07_Fill_Green.png.meta │ │ │ │ │ ├── Slider07_Fill_Yellow.png │ │ │ │ │ ├── Slider07_Fill_Yellow.png.meta │ │ │ │ │ ├── Slider07_Frame.png │ │ │ │ │ ├── Slider07_Frame.png.meta │ │ │ │ │ ├── Slider07_Icon1.png │ │ │ │ │ ├── Slider07_Icon1.png.meta │ │ │ │ │ ├── Slider07_Icon2.png │ │ │ │ │ ├── Slider07_Icon2.png.meta │ │ │ │ │ ├── Slider08_Fill.png │ │ │ │ │ ├── Slider08_Fill.png.meta │ │ │ │ │ ├── Slider08_Frame.png │ │ │ │ │ ├── Slider08_Frame.png.meta │ │ │ │ │ ├── Slider09_Fill.png │ │ │ │ │ ├── Slider09_Fill.png.meta │ │ │ │ │ ├── Slider09_Frame.png │ │ │ │ │ ├── Slider09_Frame.png.meta │ │ │ │ │ ├── Slider10_Fill_Green.png │ │ │ │ │ ├── Slider10_Fill_Green.png.meta │ │ │ │ │ ├── Slider10_Fill_Red.png │ │ │ │ │ ├── Slider10_Fill_Red.png.meta │ │ │ │ │ ├── Slider10_Frame.png │ │ │ │ │ ├── Slider10_Frame.png.meta │ │ │ │ │ ├── Slider10_FrameLine.png │ │ │ │ │ ├── Slider10_FrameLine.png.meta │ │ │ │ │ ├── Slider10_Icon.png │ │ │ │ │ ├── Slider10_Icon.png.meta │ │ │ │ │ ├── Slider10_Icon1.png │ │ │ │ │ ├── Slider10_Icon1.png.meta │ │ │ │ │ ├── Slider10_Icon2.png │ │ │ │ │ ├── Slider10_Icon2.png.meta │ │ │ │ │ ├── Slider10_Icon3.png │ │ │ │ │ ├── Slider10_Icon3.png.meta │ │ │ │ │ ├── Slider11_Fill_Blue.png │ │ │ │ │ ├── Slider11_Fill_Blue.png.meta │ │ │ │ │ ├── Slider11_Fill_Red.png │ │ │ │ │ ├── Slider11_Fill_Red.png.meta │ │ │ │ │ ├── Slider11_Fill_Yellow.png │ │ │ │ │ ├── Slider11_Fill_Yellow.png.meta │ │ │ │ │ ├── Slider11_Frame.png │ │ │ │ │ ├── Slider11_Frame.png.meta │ │ │ │ │ ├── Slider12_Fill.png │ │ │ │ │ ├── Slider12_Fill.png.meta │ │ │ │ │ ├── Slider12_FrontFrame.png │ │ │ │ │ ├── Slider12_FrontFrame.png.meta │ │ │ │ │ ├── Slider12_Handle.png │ │ │ │ │ ├── Slider12_Handle.png.meta │ │ │ │ │ ├── Slider13_Fill.png │ │ │ │ │ ├── Slider13_Fill.png.meta │ │ │ │ │ ├── Slider13_Frame.png │ │ │ │ │ ├── Slider13_Frame.png.meta │ │ │ │ │ ├── Slider14_Fill.png │ │ │ │ │ ├── Slider14_Fill.png.meta │ │ │ │ │ ├── Slider14_Frame.png │ │ │ │ │ ├── Slider14_Frame.png.meta │ │ │ │ │ ├── Slider15_Fill.png │ │ │ │ │ ├── Slider15_Fill.png.meta │ │ │ │ │ ├── Slider15_Frame.png │ │ │ │ │ ├── Slider15_Frame.png.meta │ │ │ │ │ ├── Slider15_FrameLine.png │ │ │ │ │ ├── Slider15_FrameLine.png.meta │ │ │ │ │ ├── Slider15_FrontFrame.png │ │ │ │ │ ├── Slider15_FrontFrame.png.meta │ │ │ │ │ ├── Slider15_Icon.png │ │ │ │ │ ├── Slider15_Icon.png.meta │ │ │ │ │ ├── Slider16_Fill.png │ │ │ │ │ ├── Slider16_Fill.png.meta │ │ │ │ │ ├── Slider16_Frame.png │ │ │ │ │ ├── Slider16_Frame.png.meta │ │ │ │ │ ├── Slider16_Icon.png │ │ │ │ │ ├── Slider16_Icon.png.meta │ │ │ │ │ ├── Slider17_Fill.png │ │ │ │ │ ├── Slider17_Fill.png.meta │ │ │ │ │ ├── Slider17_Frame.png │ │ │ │ │ ├── Slider17_Frame.png.meta │ │ │ │ │ ├── Slider18_Fill.png │ │ │ │ │ ├── Slider18_Fill.png.meta │ │ │ │ │ ├── Slider18_Frame.png │ │ │ │ │ ├── Slider18_Frame.png.meta │ │ │ │ │ ├── Slider18_icon1.png │ │ │ │ │ ├── Slider18_icon1.png.meta │ │ │ │ │ ├── Slider18_icon2.png │ │ │ │ │ ├── Slider18_icon2.png.meta │ │ │ │ │ ├── Slider19_Fusion_Bg1.png │ │ │ │ │ ├── Slider19_Fusion_Bg1.png.meta │ │ │ │ │ ├── Slider19_Fusion_Bg2.png │ │ │ │ │ ├── Slider19_Fusion_Bg2.png.meta │ │ │ │ │ ├── Slider19_Fusion_Bg3.png │ │ │ │ │ ├── Slider19_Fusion_Bg3.png.meta │ │ │ │ │ ├── Slider19_Fusion_Bg4.png │ │ │ │ │ ├── Slider19_Fusion_Bg4.png.meta │ │ │ │ │ ├── Slider19_Fusion_Bg5.png │ │ │ │ │ ├── Slider19_Fusion_Bg5.png.meta │ │ │ │ │ ├── Slider19_Fusion_BgGlow.png │ │ │ │ │ ├── Slider19_Fusion_BgGlow.png.meta │ │ │ │ │ ├── Slider19_Fusion_Fill.png │ │ │ │ │ ├── Slider19_Fusion_Fill.png.meta │ │ │ │ │ ├── Slider19_Fusion_Frame.png │ │ │ │ │ ├── Slider19_Fusion_Frame.png.meta │ │ │ │ │ ├── Slider19_Fusion_IconFrame.png │ │ │ │ │ ├── Slider19_Fusion_IconFrame.png.meta │ │ │ │ │ ├── Slider_IconType05.prefab │ │ │ │ │ └── Slider_IconType05.prefab.meta │ │ │ │ ├── Demo.meta │ │ │ │ └── Demo │ │ │ │ ├── Demo_Background.meta │ │ │ │ ├── Demo_Background │ │ │ │ ├── Background_01.png │ │ │ │ ├── Background_01.png.meta │ │ │ │ ├── Background_02.png │ │ │ │ ├── Background_02.png.meta │ │ │ │ ├── Background_03.png │ │ │ │ ├── Background_03.png.meta │ │ │ │ ├── Background_04.png │ │ │ │ ├── Background_04.png.meta │ │ │ │ ├── Background_05.png │ │ │ │ ├── Background_05.png.meta │ │ │ │ ├── Background_06.png │ │ │ │ ├── Background_06.png.meta │ │ │ │ ├── Background_07.png │ │ │ │ ├── Background_07.png.meta │ │ │ │ ├── Background_08_1Left.png │ │ │ │ ├── Background_08_1Left.png.meta │ │ │ │ ├── Background_08_2Middle.png │ │ │ │ ├── Background_08_2Middle.png.meta │ │ │ │ ├── Background_08_3Right.png │ │ │ │ ├── Background_08_3Right.png.meta │ │ │ │ ├── Background_08_4BottomGlow_Green.png │ │ │ │ ├── Background_08_4BottomGlow_Green.png.meta │ │ │ │ ├── Background_08_5BottomGlow_Blue.png │ │ │ │ ├── Background_08_5BottomGlow_Blue.png.meta │ │ │ │ ├── Background_08_6EffectImage.png │ │ │ │ ├── Background_08_6EffectImage.png.meta │ │ │ │ ├── Background_09_Purple1.png │ │ │ │ ├── Background_09_Purple1.png.meta │ │ │ │ ├── Background_09_Purple2.png │ │ │ │ ├── Background_09_Purple2.png.meta │ │ │ │ ├── Background_09_Purple3_GlowTop.png │ │ │ │ ├── Background_09_Purple3_GlowTop.png.meta │ │ │ │ ├── Background_09_Purple4_GlowBottom.png │ │ │ │ ├── Background_09_Purple4_GlowBottom.png.meta │ │ │ │ ├── Background_09_Purple5_DivideLine.png │ │ │ │ ├── Background_09_Purple5_DivideLine.png.meta │ │ │ │ ├── Background_ScreenDimed_Black.png │ │ │ │ ├── Background_ScreenDimed_Black.png.meta │ │ │ │ ├── Background_ScreenDimed_Navy.png │ │ │ │ ├── Background_ScreenDimed_Navy.png.meta │ │ │ │ ├── Background_ScreenGlow.png │ │ │ │ └── Background_ScreenGlow.png.meta │ │ │ │ ├── Demo_Character.meta │ │ │ │ ├── Demo_Character │ │ │ │ ├── Character_Sample01_l.png │ │ │ │ ├── Character_Sample01_l.png.meta │ │ │ │ ├── Character_Sample01_m.png │ │ │ │ ├── Character_Sample01_m.png.meta │ │ │ │ ├── Character_Sample01_s.png │ │ │ │ ├── Character_Sample01_s.png.meta │ │ │ │ ├── Character_Sample01_xl.png │ │ │ │ ├── Character_Sample01_xl.png.meta │ │ │ │ ├── Character_Sample02.png │ │ │ │ ├── Character_Sample02.png.meta │ │ │ │ ├── Character_Sample03_l.png │ │ │ │ ├── Character_Sample03_l.png.meta │ │ │ │ ├── Character_Sample03_m.png │ │ │ │ ├── Character_Sample03_m.png.meta │ │ │ │ ├── Character_Sample03_s.png │ │ │ │ ├── Character_Sample03_s.png.meta │ │ │ │ ├── Character_Sample04.png │ │ │ │ ├── Character_Sample04.png.meta │ │ │ │ ├── Character_Sample05_l.png │ │ │ │ ├── Character_Sample05_l.png.meta │ │ │ │ ├── Character_Sample05_m.png │ │ │ │ ├── Character_Sample05_m.png.meta │ │ │ │ ├── Character_Sample05_s.png │ │ │ │ ├── Character_Sample05_s.png.meta │ │ │ │ ├── Character_Sample06_l.png │ │ │ │ ├── Character_Sample06_l.png.meta │ │ │ │ ├── Character_Sample06_m.png │ │ │ │ ├── Character_Sample06_m.png.meta │ │ │ │ ├── Character_Sample06_s.png │ │ │ │ ├── Character_Sample06_s.png.meta │ │ │ │ ├── Character_Sample07_l.png │ │ │ │ ├── Character_Sample07_l.png.meta │ │ │ │ ├── Character_Sample07_xl.png │ │ │ │ ├── Character_Sample07_xl.png.meta │ │ │ │ ├── Character_Sample07_xl2.png │ │ │ │ ├── Character_Sample07_xl2.png.meta │ │ │ │ ├── Character_Sample08.png │ │ │ │ ├── Character_Sample08.png.meta │ │ │ │ ├── Character_Sample09.png │ │ │ │ ├── Character_Sample09.png.meta │ │ │ │ ├── Character_Sample10.png │ │ │ │ ├── Character_Sample10.png.meta │ │ │ │ ├── Character_Sample11.png │ │ │ │ ├── Character_Sample11.png.meta │ │ │ │ ├── Character_Sample12.png │ │ │ │ ├── Character_Sample12.png.meta │ │ │ │ ├── Character_Sample13.png │ │ │ │ ├── Character_Sample13.png.meta │ │ │ │ ├── Character_Sample14.png │ │ │ │ ├── Character_Sample14.png.meta │ │ │ │ ├── Character_Sample15.png │ │ │ │ ├── Character_Sample15.png.meta │ │ │ │ ├── Character_Sample16.png │ │ │ │ ├── Character_Sample16.png.meta │ │ │ │ ├── Character_Sample17.png │ │ │ │ ├── Character_Sample17.png.meta │ │ │ │ ├── Character_Sample18.png │ │ │ │ ├── Character_Sample18.png.meta │ │ │ │ ├── Character_Shadow01.png │ │ │ │ ├── Character_Shadow01.png.meta │ │ │ │ ├── Character_Shadow02.png │ │ │ │ ├── Character_Shadow02.png.meta │ │ │ │ ├── Play_Caracter_Sample0.png │ │ │ │ ├── Play_Caracter_Sample0.png.meta │ │ │ │ ├── Play_Caracter_Sample03.png │ │ │ │ ├── Play_Caracter_Sample03.png.meta │ │ │ │ ├── Play_Caracter_Sample04.png │ │ │ │ ├── Play_Caracter_Sample04.png.meta │ │ │ │ ├── Play_Caracter_Sample05.png │ │ │ │ ├── Play_Caracter_Sample05.png.meta │ │ │ │ ├── Play_Caracter_Sample06.png │ │ │ │ ├── Play_Caracter_Sample06.png.meta │ │ │ │ ├── Play_Caracter_Sample07.png │ │ │ │ ├── Play_Caracter_Sample07.png.meta │ │ │ │ ├── Play_Caracter_Sample08.png │ │ │ │ ├── Play_Caracter_Sample08.png.meta │ │ │ │ ├── Play_Caracter_Sample09.png │ │ │ │ ├── Play_Caracter_Sample09.png.meta │ │ │ │ ├── Play_Caracter_Sample1.png │ │ │ │ ├── Play_Caracter_Sample1.png.meta │ │ │ │ ├── Play_Caracter_Sample10.png │ │ │ │ └── Play_Caracter_Sample10.png.meta │ │ │ │ ├── Demo_ClanFlag.meta │ │ │ │ ├── Demo_ClanFlag │ │ │ │ ├── ClanFlag_Bg_Large0.png │ │ │ │ ├── ClanFlag_Bg_Large0.png.meta │ │ │ │ ├── ClanFlag_Bg_Large1.png │ │ │ │ ├── ClanFlag_Bg_Large1.png.meta │ │ │ │ ├── ClanFlag_Bg_Large2.png │ │ │ │ ├── ClanFlag_Bg_Large2.png.meta │ │ │ │ ├── ClanFlag_Bg_Large3.png │ │ │ │ ├── ClanFlag_Bg_Large3.png.meta │ │ │ │ ├── ClanFlag_Bg_Large4.png │ │ │ │ ├── ClanFlag_Bg_Large4.png.meta │ │ │ │ ├── ClanFlag_Bg_Small0.png │ │ │ │ ├── ClanFlag_Bg_Small0.png.meta │ │ │ │ ├── ClanFlag_Bg_Small1.png │ │ │ │ ├── ClanFlag_Bg_Small1.png.meta │ │ │ │ ├── ClanFlag_Bg_Small2.png │ │ │ │ ├── ClanFlag_Bg_Small2.png.meta │ │ │ │ ├── ClanFlag_Bg_Small3.png │ │ │ │ ├── ClanFlag_Bg_Small3.png.meta │ │ │ │ ├── ClanFlag_Bg_Small4.png │ │ │ │ ├── ClanFlag_Bg_Small4.png.meta │ │ │ │ ├── ClanFlag_Frame_Large.png │ │ │ │ ├── ClanFlag_Frame_Large.png.meta │ │ │ │ ├── ClanFlag_Frame_Small.png │ │ │ │ ├── ClanFlag_Frame_Small.png.meta │ │ │ │ ├── ClanIcon_Symbol_Large0.png │ │ │ │ ├── ClanIcon_Symbol_Large0.png.meta │ │ │ │ ├── ClanIcon_Symbol_Large1.png │ │ │ │ ├── ClanIcon_Symbol_Large1.png.meta │ │ │ │ ├── ClanIcon_Symbol_Large2.png │ │ │ │ ├── ClanIcon_Symbol_Large2.png.meta │ │ │ │ ├── ClanIcon_Symbol_Large3.png │ │ │ │ ├── ClanIcon_Symbol_Large3.png.meta │ │ │ │ ├── ClanIcon_Symbol_Large4.png │ │ │ │ ├── ClanIcon_Symbol_Large4.png.meta │ │ │ │ ├── ClanIcon_Symbol_Small0.png │ │ │ │ ├── ClanIcon_Symbol_Small0.png.meta │ │ │ │ ├── ClanIcon_Symbol_Small1.png │ │ │ │ ├── ClanIcon_Symbol_Small1.png.meta │ │ │ │ ├── ClanIcon_Symbol_Small2.png │ │ │ │ ├── ClanIcon_Symbol_Small2.png.meta │ │ │ │ ├── ClanIcon_Symbol_Small3.png │ │ │ │ ├── ClanIcon_Symbol_Small3.png.meta │ │ │ │ ├── ClanIcon_Symbol_Small4.png │ │ │ │ └── ClanIcon_Symbol_Small4.png.meta │ │ │ │ ├── Demo_CountryFlag.meta │ │ │ │ ├── Demo_CountryFlag │ │ │ │ ├── Icon_Flag_Chn.Png │ │ │ │ ├── Icon_Flag_Chn.Png.meta │ │ │ │ ├── Icon_Flag_Deu.Png │ │ │ │ ├── Icon_Flag_Deu.Png.meta │ │ │ │ ├── Icon_Flag_Eng.Png │ │ │ │ ├── Icon_Flag_Eng.Png.meta │ │ │ │ ├── Icon_Flag_Esp.Png │ │ │ │ ├── Icon_Flag_Esp.Png.meta │ │ │ │ ├── Icon_Flag_Fra.Png │ │ │ │ ├── Icon_Flag_Fra.Png.meta │ │ │ │ ├── Icon_Flag_Gre.Png │ │ │ │ ├── Icon_Flag_Gre.Png.meta │ │ │ │ ├── Icon_Flag_Ina.Png │ │ │ │ ├── Icon_Flag_Ina.Png.meta │ │ │ │ ├── Icon_Flag_Ita.Png │ │ │ │ ├── Icon_Flag_Ita.Png.meta │ │ │ │ ├── Icon_Flag_Jpn.Png │ │ │ │ ├── Icon_Flag_Jpn.Png.meta │ │ │ │ ├── Icon_Flag_Kor.Png │ │ │ │ ├── Icon_Flag_Kor.Png.meta │ │ │ │ ├── Icon_Flag_Pol.Png │ │ │ │ ├── Icon_Flag_Pol.Png.meta │ │ │ │ ├── Icon_Flag_Pra.Png │ │ │ │ ├── Icon_Flag_Pra.Png.meta │ │ │ │ ├── Icon_Flag_Prt.Png │ │ │ │ ├── Icon_Flag_Prt.Png.meta │ │ │ │ ├── Icon_Flag_Rou.Png │ │ │ │ ├── Icon_Flag_Rou.Png.meta │ │ │ │ ├── Icon_Flag_Rus.Png │ │ │ │ ├── Icon_Flag_Rus.Png.meta │ │ │ │ ├── Icon_Flag_Swe.Png │ │ │ │ ├── Icon_Flag_Swe.Png.meta │ │ │ │ ├── Icon_Flag_Tha.Png │ │ │ │ ├── Icon_Flag_Tha.Png.meta │ │ │ │ ├── Icon_Flag_Tur.Png │ │ │ │ ├── Icon_Flag_Tur.Png.meta │ │ │ │ ├── Icon_Flag_Twn.Png │ │ │ │ ├── Icon_Flag_Twn.Png.meta │ │ │ │ ├── Icon_Flag_Ukr.Png │ │ │ │ ├── Icon_Flag_Ukr.Png.meta │ │ │ │ ├── Icon_LanguageFlag_Large_Ara.png │ │ │ │ ├── Icon_LanguageFlag_Large_Ara.png.meta │ │ │ │ ├── Icon_LanguageFlag_Large_Chn.png │ │ │ │ ├── Icon_LanguageFlag_Large_Chn.png.meta │ │ │ │ ├── Icon_LanguageFlag_Large_Deu.png │ │ │ │ ├── Icon_LanguageFlag_Large_Deu.png.meta │ │ │ │ ├── Icon_LanguageFlag_Large_Eng.png │ │ │ │ ├── Icon_LanguageFlag_Large_Eng.png.meta │ │ │ │ ├── Icon_LanguageFlag_Large_Esp.Png │ │ │ │ ├── Icon_LanguageFlag_Large_Esp.Png.meta │ │ │ │ ├── Icon_LanguageFlag_Large_Fra.Png │ │ │ │ ├── Icon_LanguageFlag_Large_Fra.Png.meta │ │ │ │ ├── Icon_LanguageFlag_Large_Gre.Png │ │ │ │ ├── Icon_LanguageFlag_Large_Gre.Png.meta │ │ │ │ ├── Icon_LanguageFlag_Large_Ina.Png │ │ │ │ ├── Icon_LanguageFlag_Large_Ina.Png.meta │ │ │ │ ├── Icon_LanguageFlag_Large_Ita.Png │ │ │ │ ├── Icon_LanguageFlag_Large_Ita.Png.meta │ │ │ │ ├── Icon_LanguageFlag_Large_Jpn.Png │ │ │ │ ├── Icon_LanguageFlag_Large_Jpn.Png.meta │ │ │ │ ├── Icon_LanguageFlag_Large_Kor.Png │ │ │ │ ├── Icon_LanguageFlag_Large_Kor.Png.meta │ │ │ │ ├── Icon_LanguageFlag_Large_Pol.Png │ │ │ │ ├── Icon_LanguageFlag_Large_Pol.Png.meta │ │ │ │ ├── Icon_LanguageFlag_Large_Pra.Png │ │ │ │ ├── Icon_LanguageFlag_Large_Pra.Png.meta │ │ │ │ ├── Icon_LanguageFlag_Large_Prt.Png │ │ │ │ ├── Icon_LanguageFlag_Large_Prt.Png.meta │ │ │ │ ├── Icon_LanguageFlag_Large_Rou.Png │ │ │ │ ├── Icon_LanguageFlag_Large_Rou.Png.meta │ │ │ │ ├── Icon_LanguageFlag_Large_Rus.Png │ │ │ │ ├── Icon_LanguageFlag_Large_Rus.Png.meta │ │ │ │ ├── Icon_LanguageFlag_Large_Swe.Png │ │ │ │ ├── Icon_LanguageFlag_Large_Swe.Png.meta │ │ │ │ ├── Icon_LanguageFlag_Large_Tha.Png │ │ │ │ ├── Icon_LanguageFlag_Large_Tha.Png.meta │ │ │ │ ├── Icon_LanguageFlag_Large_Tur.Png │ │ │ │ ├── Icon_LanguageFlag_Large_Tur.Png.meta │ │ │ │ ├── Icon_LanguageFlag_Large_Twn.Png │ │ │ │ ├── Icon_LanguageFlag_Large_Twn.Png.meta │ │ │ │ ├── Icon_LanguageFlag_Large_Ukr.Png │ │ │ │ ├── Icon_LanguageFlag_Large_Ukr.Png.meta │ │ │ │ ├── Icon_LanguageFlag_Large_Vnm.Png │ │ │ │ ├── Icon_LanguageFlag_Large_Vnm.Png.meta │ │ │ │ ├── Icon_LanguageFlag_Small_Chn.png │ │ │ │ ├── Icon_LanguageFlag_Small_Chn.png.meta │ │ │ │ ├── Icon_LanguageFlag_Small_Deu.png │ │ │ │ ├── Icon_LanguageFlag_Small_Deu.png.meta │ │ │ │ ├── Icon_LanguageFlag_Small_Eng.png │ │ │ │ ├── Icon_LanguageFlag_Small_Eng.png.meta │ │ │ │ ├── Icon_LanguageFlag_Small_Esp.png │ │ │ │ ├── Icon_LanguageFlag_Small_Esp.png.meta │ │ │ │ ├── Icon_LanguageFlag_Small_Fra.png │ │ │ │ ├── Icon_LanguageFlag_Small_Fra.png.meta │ │ │ │ ├── Icon_LanguageFlag_Small_Gre.png │ │ │ │ ├── Icon_LanguageFlag_Small_Gre.png.meta │ │ │ │ ├── Icon_LanguageFlag_Small_Ina.png │ │ │ │ ├── Icon_LanguageFlag_Small_Ina.png.meta │ │ │ │ ├── Icon_LanguageFlag_Small_Ita.png │ │ │ │ ├── Icon_LanguageFlag_Small_Ita.png.meta │ │ │ │ ├── Icon_LanguageFlag_Small_Jpn.png │ │ │ │ ├── Icon_LanguageFlag_Small_Jpn.png.meta │ │ │ │ ├── Icon_LanguageFlag_Small_Kor.png │ │ │ │ ├── Icon_LanguageFlag_Small_Kor.png.meta │ │ │ │ ├── Icon_LanguageFlag_Small_Pol.png │ │ │ │ ├── Icon_LanguageFlag_Small_Pol.png.meta │ │ │ │ ├── Icon_LanguageFlag_Small_Pra.png │ │ │ │ ├── Icon_LanguageFlag_Small_Pra.png.meta │ │ │ │ ├── Icon_LanguageFlag_Small_Prt.png │ │ │ │ ├── Icon_LanguageFlag_Small_Prt.png.meta │ │ │ │ ├── Icon_LanguageFlag_Small_Rou.png │ │ │ │ ├── Icon_LanguageFlag_Small_Rou.png.meta │ │ │ │ ├── Icon_LanguageFlag_Small_Rus.png │ │ │ │ ├── Icon_LanguageFlag_Small_Rus.png.meta │ │ │ │ ├── Icon_LanguageFlag_Small_Swe.png │ │ │ │ ├── Icon_LanguageFlag_Small_Swe.png.meta │ │ │ │ ├── Icon_LanguageFlag_Small_Tha.png │ │ │ │ ├── Icon_LanguageFlag_Small_Tha.png.meta │ │ │ │ ├── Icon_LanguageFlag_Small_Tur.png │ │ │ │ ├── Icon_LanguageFlag_Small_Tur.png.meta │ │ │ │ ├── Icon_LanguageFlag_Small_Twn.png │ │ │ │ ├── Icon_LanguageFlag_Small_Twn.png.meta │ │ │ │ ├── Icon_LanguageFlag_Small_Ukr.png │ │ │ │ └── Icon_LanguageFlag_Small_Ukr.png.meta │ │ │ │ ├── Demo_Icon.meta │ │ │ │ ├── Demo_Icon │ │ │ │ ├── Icon_ChestIcon_Blue02_l.png │ │ │ │ ├── Icon_ChestIcon_Blue02_l.png.meta │ │ │ │ ├── Icon_ChestIcon_Blue02_m.png │ │ │ │ ├── Icon_ChestIcon_Blue02_m.png.meta │ │ │ │ ├── Icon_ChestIcon_Blue02_s.png │ │ │ │ ├── Icon_ChestIcon_Blue02_s.png.meta │ │ │ │ ├── Icon_ChestIcon_Blue03_l.png │ │ │ │ ├── Icon_ChestIcon_Blue03_l.png.meta │ │ │ │ ├── Icon_ChestIcon_Blue03_s.png │ │ │ │ ├── Icon_ChestIcon_Blue03_s.png.meta │ │ │ │ ├── Icon_ChestIcon_Gold01_l.png │ │ │ │ ├── Icon_ChestIcon_Gold01_l.png.meta │ │ │ │ ├── Icon_ChestIcon_Gold01_s.png │ │ │ │ ├── Icon_ChestIcon_Gold01_s.png.meta │ │ │ │ ├── Icon_ChestIcon_Gold01_xl.png │ │ │ │ ├── Icon_ChestIcon_Gold01_xl.png.meta │ │ │ │ ├── Icon_ImageIcon_AdRemove_l.png │ │ │ │ ├── Icon_ImageIcon_AdRemove_l.png.meta │ │ │ │ ├── Icon_ImageIcon_AdRemove_s.png │ │ │ │ ├── Icon_ImageIcon_AdRemove_s.png.meta │ │ │ │ ├── Icon_ImageIcon_Ad_00_l.png │ │ │ │ ├── Icon_ImageIcon_Ad_00_l.png.meta │ │ │ │ ├── Icon_ImageIcon_Ad_00_s.png │ │ │ │ ├── Icon_ImageIcon_Ad_00_s.png.meta │ │ │ │ ├── Icon_ImageIcon_Ad_01_l.png │ │ │ │ ├── Icon_ImageIcon_Ad_01_l.png.meta │ │ │ │ ├── Icon_ImageIcon_Ad_01_s.png │ │ │ │ ├── Icon_ImageIcon_Ad_01_s.png.meta │ │ │ │ ├── Icon_ImageIcon_Badge.png │ │ │ │ ├── Icon_ImageIcon_Badge.png.meta │ │ │ │ ├── Icon_ImageIcon_Badge_Best.png │ │ │ │ ├── Icon_ImageIcon_Badge_Best.png.meta │ │ │ │ ├── Icon_ImageIcon_Badge_Popular.png │ │ │ │ ├── Icon_ImageIcon_Badge_Popular.png.meta │ │ │ │ ├── Icon_ImageIcon_Chat.png │ │ │ │ ├── Icon_ImageIcon_Chat.png.meta │ │ │ │ ├── Icon_ImageIcon_Clan.png │ │ │ │ ├── Icon_ImageIcon_Clan.png.meta │ │ │ │ ├── Icon_ImageIcon_ClearStamp_l.png │ │ │ │ ├── Icon_ImageIcon_ClearStamp_l.png.meta │ │ │ │ ├── Icon_ImageIcon_ClearStamp_s.png │ │ │ │ ├── Icon_ImageIcon_ClearStamp_s.png.meta │ │ │ │ ├── Icon_ImageIcon_Crown_Gold.Png │ │ │ │ ├── Icon_ImageIcon_Crown_Gold.Png.meta │ │ │ │ ├── Icon_ImageIcon_Crown_Silver.png │ │ │ │ ├── Icon_ImageIcon_Crown_Silver.png.meta │ │ │ │ ├── Icon_ImageIcon_Emoji.png │ │ │ │ ├── Icon_ImageIcon_Emoji.png.meta │ │ │ │ ├── Icon_ImageIcon_Energy.png │ │ │ │ ├── Icon_ImageIcon_Energy.png.meta │ │ │ │ ├── Icon_ImageIcon_Facebook.png │ │ │ │ ├── Icon_ImageIcon_Facebook.png.meta │ │ │ │ ├── Icon_ImageIcon_Gem01_l.png │ │ │ │ ├── Icon_ImageIcon_Gem01_l.png.meta │ │ │ │ ├── Icon_ImageIcon_Gem01_m.png │ │ │ │ ├── Icon_ImageIcon_Gem01_m.png.meta │ │ │ │ ├── Icon_ImageIcon_Gem01_s.png │ │ │ │ ├── Icon_ImageIcon_Gem01_s.png.meta │ │ │ │ ├── Icon_ImageIcon_Gem02.png │ │ │ │ ├── Icon_ImageIcon_Gem02.png.meta │ │ │ │ ├── Icon_ImageIcon_GemGold.png │ │ │ │ ├── Icon_ImageIcon_GemGold.png.meta │ │ │ │ ├── Icon_ImageIcon_Gift_Blue.png │ │ │ │ ├── Icon_ImageIcon_Gift_Blue.png.meta │ │ │ │ ├── Icon_ImageIcon_Gift_Purple.png │ │ │ │ ├── Icon_ImageIcon_Gift_Purple.png.meta │ │ │ │ ├── Icon_ImageIcon_Glod01_l.png │ │ │ │ ├── Icon_ImageIcon_Glod01_l.png.meta │ │ │ │ ├── Icon_ImageIcon_Glod01_l_d.png │ │ │ │ ├── Icon_ImageIcon_Glod01_l_d.png.meta │ │ │ │ ├── Icon_ImageIcon_Glod01_s.png │ │ │ │ ├── Icon_ImageIcon_Glod01_s.png.meta │ │ │ │ ├── Icon_ImageIcon_Glod02.png │ │ │ │ ├── Icon_ImageIcon_Glod02.png.meta │ │ │ │ ├── Icon_ImageIcon_Glove.png │ │ │ │ ├── Icon_ImageIcon_Glove.png.meta │ │ │ │ ├── Icon_ImageIcon_GoldPouch.png │ │ │ │ ├── Icon_ImageIcon_GoldPouch.png.meta │ │ │ │ ├── Icon_ImageIcon_Info.png │ │ │ │ ├── Icon_ImageIcon_Info.png.meta │ │ │ │ ├── Icon_ImageIcon_Knife_Battle.png │ │ │ │ ├── Icon_ImageIcon_Knife_Battle.png.meta │ │ │ │ ├── Icon_ImageIcon_LevelFrame1.png │ │ │ │ ├── Icon_ImageIcon_LevelFrame1.png.meta │ │ │ │ ├── Icon_ImageIcon_LevelFrame2_Highlight.png │ │ │ │ ├── Icon_ImageIcon_LevelFrame2_Highlight.png.meta │ │ │ │ ├── Icon_ImageIcon_Lock01_l.png │ │ │ │ ├── Icon_ImageIcon_Lock01_l.png.meta │ │ │ │ ├── Icon_ImageIcon_Lock01_m.png │ │ │ │ ├── Icon_ImageIcon_Lock01_m.png.meta │ │ │ │ ├── Icon_ImageIcon_Lock01_s.png │ │ │ │ ├── Icon_ImageIcon_Lock01_s.png.meta │ │ │ │ ├── Icon_ImageIcon_Lock02_Lock_btn.png │ │ │ │ ├── Icon_ImageIcon_Lock02_Lock_btn.png.meta │ │ │ │ ├── Icon_ImageIcon_Lock02_btn.png │ │ │ │ ├── Icon_ImageIcon_Lock02_btn.png.meta │ │ │ │ ├── Icon_ImageIcon_Map_l.png │ │ │ │ ├── Icon_ImageIcon_Map_l.png.meta │ │ │ │ ├── Icon_ImageIcon_Map_s.Png │ │ │ │ ├── Icon_ImageIcon_Map_s.Png.meta │ │ │ │ ├── Icon_ImageIcon_Medal_Bronze.png │ │ │ │ ├── Icon_ImageIcon_Medal_Bronze.png.meta │ │ │ │ ├── Icon_ImageIcon_Medal_Gold.png │ │ │ │ ├── Icon_ImageIcon_Medal_Gold.png.meta │ │ │ │ ├── Icon_ImageIcon_Medal_Silver.png │ │ │ │ ├── Icon_ImageIcon_Medal_Silver.png.meta │ │ │ │ ├── Icon_ImageIcon_Member.png │ │ │ │ ├── Icon_ImageIcon_Member.png.meta │ │ │ │ ├── Icon_ImageIcon_NetworkError.png │ │ │ │ ├── Icon_ImageIcon_NetworkError.png.meta │ │ │ │ ├── Icon_ImageIcon_Pass01.png │ │ │ │ ├── Icon_ImageIcon_Pass01.png.meta │ │ │ │ ├── Icon_ImageIcon_Pass02.png │ │ │ │ ├── Icon_ImageIcon_Pass02.png.meta │ │ │ │ ├── Icon_ImageIcon_Pass03.png │ │ │ │ ├── Icon_ImageIcon_Pass03.png.meta │ │ │ │ ├── Icon_ImageIcon_Pass_Golden.png │ │ │ │ ├── Icon_ImageIcon_Pass_Golden.png.meta │ │ │ │ ├── Icon_ImageIcon_Pass_Normal.png │ │ │ │ ├── Icon_ImageIcon_Pass_Normal.png.meta │ │ │ │ ├── Icon_ImageIcon_Ranking.png │ │ │ │ ├── Icon_ImageIcon_Ranking.png.meta │ │ │ │ ├── Icon_ImageIcon_Star01_l.png │ │ │ │ ├── Icon_ImageIcon_Star01_l.png.meta │ │ │ │ ├── Icon_ImageIcon_Star01_m.png │ │ │ │ ├── Icon_ImageIcon_Star01_m.png.meta │ │ │ │ ├── Icon_ImageIcon_Star01_s.png │ │ │ │ ├── Icon_ImageIcon_Star01_s.png.meta │ │ │ │ ├── Icon_ImageIcon_Star02_l.png │ │ │ │ ├── Icon_ImageIcon_Star02_l.png.meta │ │ │ │ ├── Icon_ImageIcon_Star02_s.png │ │ │ │ ├── Icon_ImageIcon_Star02_s.png.meta │ │ │ │ ├── Icon_ImageIcon_StarGrade_l_Off.png │ │ │ │ ├── Icon_ImageIcon_StarGrade_l_Off.png.meta │ │ │ │ ├── Icon_ImageIcon_StarGrade_l_On.png │ │ │ │ ├── Icon_ImageIcon_StarGrade_l_On.png.meta │ │ │ │ ├── Icon_ImageIcon_StarGrade_s_Off.png │ │ │ │ ├── Icon_ImageIcon_StarGrade_s_Off.png.meta │ │ │ │ ├── Icon_ImageIcon_StarGrade_s_On.png │ │ │ │ ├── Icon_ImageIcon_StarGrade_s_On.png.meta │ │ │ │ ├── Icon_ImageIcon_Trophy_S.png │ │ │ │ ├── Icon_ImageIcon_Trophy_S.png.meta │ │ │ │ ├── Icon_ImageIcon_Trophy_l.png │ │ │ │ ├── Icon_ImageIcon_Trophy_l.png.meta │ │ │ │ ├── Icon_ImageIcon_Trophy_m.png │ │ │ │ ├── Icon_ImageIcon_Trophy_m.png.meta │ │ │ │ ├── Icon_ImageIcon_Tutorial_Hand.png │ │ │ │ ├── Icon_ImageIcon_Tutorial_Hand.png.meta │ │ │ │ ├── Icon_ImageIcon_Tutorial_LineCircle.png │ │ │ │ ├── Icon_ImageIcon_Tutorial_LineCircle.png.meta │ │ │ │ ├── Icon_ImageIcon_UserThumbnail.png │ │ │ │ ├── Icon_ImageIcon_UserThumbnail.png.meta │ │ │ │ ├── Icon_ImageIcon_lock_00.png │ │ │ │ ├── Icon_ImageIcon_lock_00.png.meta │ │ │ │ ├── Icon_MenuIcon00_TabMenu_Focus.png │ │ │ │ ├── Icon_MenuIcon00_TabMenu_Focus.png.meta │ │ │ │ ├── Icon_MenuIcon01_List_n.Png │ │ │ │ ├── Icon_MenuIcon01_List_n.Png.meta │ │ │ │ ├── Icon_MenuIcon01_List_s.Png │ │ │ │ ├── Icon_MenuIcon01_List_s.Png.meta │ │ │ │ ├── Icon_MenuIcon01_Menu_n.Png │ │ │ │ ├── Icon_MenuIcon01_Menu_n.Png.meta │ │ │ │ ├── Icon_MenuIcon01_Menu_s.Png │ │ │ │ ├── Icon_MenuIcon01_Menu_s.Png.meta │ │ │ │ ├── Icon_MenuIcon02_Cards.Png │ │ │ │ ├── Icon_MenuIcon02_Cards.Png.meta │ │ │ │ ├── Icon_MenuIcon02_Clan_d.Png │ │ │ │ ├── Icon_MenuIcon02_Clan_d.Png.meta │ │ │ │ ├── Icon_MenuIcon02_Clan_n.Png │ │ │ │ ├── Icon_MenuIcon02_Clan_n.Png.meta │ │ │ │ ├── Icon_MenuIcon02_Inventory.Png │ │ │ │ ├── Icon_MenuIcon02_Inventory.Png.meta │ │ │ │ ├── Icon_MenuIcon02_Shop.Png │ │ │ │ ├── Icon_MenuIcon02_Shop.Png.meta │ │ │ │ ├── Icon_MenuIcon03_Ornament_n.Png │ │ │ │ ├── Icon_MenuIcon03_Ornament_n.Png.meta │ │ │ │ ├── Icon_MenuIcon03_Ornament_s.Png │ │ │ │ ├── Icon_MenuIcon03_Ornament_s.Png.meta │ │ │ │ ├── Icon_MenuIcon03_Shield_n.Png │ │ │ │ ├── Icon_MenuIcon03_Shield_n.Png.meta │ │ │ │ ├── Icon_MenuIcon03_Shield_s.Png │ │ │ │ ├── Icon_MenuIcon03_Shield_s.Png.meta │ │ │ │ ├── Icon_MenuIcon03_Shoes_n.Png │ │ │ │ ├── Icon_MenuIcon03_Shoes_n.Png.meta │ │ │ │ ├── Icon_MenuIcon03_Shoes_s.Png │ │ │ │ ├── Icon_MenuIcon03_Shoes_s.Png.meta │ │ │ │ ├── Icon_MenuIcon03_Weapon_n.Png │ │ │ │ ├── Icon_MenuIcon03_Weapon_n.Png.meta │ │ │ │ ├── Icon_MenuIcon03_Weapon_s.Png │ │ │ │ ├── Icon_MenuIcon03_Weapon_s.Png.meta │ │ │ │ ├── Icon_MenuIcon04_Friends.png │ │ │ │ ├── Icon_MenuIcon04_Friends.png.meta │ │ │ │ ├── Icon_MenuIcon04_Inbox.Png │ │ │ │ ├── Icon_MenuIcon04_Inbox.Png.meta │ │ │ │ ├── Icon_MenuIcon04_Mission.Png │ │ │ │ ├── Icon_MenuIcon04_Mission.Png.meta │ │ │ │ ├── Icon_MenuIcon04_News-.Png │ │ │ │ ├── Icon_MenuIcon04_News-.Png.meta │ │ │ │ ├── Icon_MenuIcon04_Reward.Png │ │ │ │ ├── Icon_MenuIcon04_Reward.Png.meta │ │ │ │ ├── Icon_MenuIcon04_Trophy.Png │ │ │ │ ├── Icon_MenuIcon04_Trophy.Png.meta │ │ │ │ ├── Icon_PictoIcon_Add01.png │ │ │ │ ├── Icon_PictoIcon_Add01.png.meta │ │ │ │ ├── Icon_PictoIcon_Add02.png │ │ │ │ ├── Icon_PictoIcon_Add02.png.meta │ │ │ │ ├── Icon_PictoIcon_Add03.png │ │ │ │ ├── Icon_PictoIcon_Add03.png.meta │ │ │ │ ├── Icon_PictoIcon_Auto.png │ │ │ │ ├── Icon_PictoIcon_Auto.png.meta │ │ │ │ ├── Icon_PictoIcon_Back.png │ │ │ │ ├── Icon_PictoIcon_Back.png.meta │ │ │ │ ├── Icon_PictoIcon_Battery_Full.png │ │ │ │ ├── Icon_PictoIcon_Battery_Full.png.meta │ │ │ │ ├── Icon_PictoIcon_Battery_Half.png │ │ │ │ ├── Icon_PictoIcon_Battery_Half.png.meta │ │ │ │ ├── Icon_PictoIcon_Bell.png │ │ │ │ ├── Icon_PictoIcon_Bell.png.meta │ │ │ │ ├── Icon_PictoIcon_Boss_Stage_f.png │ │ │ │ ├── Icon_PictoIcon_Boss_Stage_f.png.meta │ │ │ │ ├── Icon_PictoIcon_Boss_Stage_n.png │ │ │ │ ├── Icon_PictoIcon_Boss_Stage_n.png.meta │ │ │ │ ├── Icon_PictoIcon_Close01.png │ │ │ │ ├── Icon_PictoIcon_Close01.png.meta │ │ │ │ ├── Icon_PictoIcon_Close02.png │ │ │ │ ├── Icon_PictoIcon_Close02.png.meta │ │ │ │ ├── Icon_PictoIcon_Delete.png │ │ │ │ ├── Icon_PictoIcon_Delete.png.meta │ │ │ │ ├── Icon_PictoIcon_Down.png │ │ │ │ ├── Icon_PictoIcon_Down.png.meta │ │ │ │ ├── Icon_PictoIcon_Edit.png │ │ │ │ ├── Icon_PictoIcon_Edit.png.meta │ │ │ │ ├── Icon_PictoIcon_Exit.png │ │ │ │ ├── Icon_PictoIcon_Exit.png.meta │ │ │ │ ├── Icon_PictoIcon_Exit_l.png │ │ │ │ ├── Icon_PictoIcon_Exit_l.png.meta │ │ │ │ ├── Icon_PictoIcon_Haptic.png │ │ │ │ ├── Icon_PictoIcon_Haptic.png.meta │ │ │ │ ├── Icon_PictoIcon_Help.png │ │ │ │ ├── Icon_PictoIcon_Help.png.meta │ │ │ │ ├── Icon_PictoIcon_Home.png │ │ │ │ ├── Icon_PictoIcon_Home.png.meta │ │ │ │ ├── Icon_PictoIcon_Lock.png │ │ │ │ ├── Icon_PictoIcon_Lock.png.meta │ │ │ │ ├── Icon_PictoIcon_Lock00.png │ │ │ │ ├── Icon_PictoIcon_Lock00.png.meta │ │ │ │ ├── Icon_PictoIcon_Music_off.png │ │ │ │ ├── Icon_PictoIcon_Music_off.png.meta │ │ │ │ ├── Icon_PictoIcon_Music_on.png │ │ │ │ ├── Icon_PictoIcon_Music_on.png.meta │ │ │ │ ├── Icon_PictoIcon_Next01.png │ │ │ │ ├── Icon_PictoIcon_Next01.png.meta │ │ │ │ ├── Icon_PictoIcon_Next02.png │ │ │ │ ├── Icon_PictoIcon_Next02.png.meta │ │ │ │ ├── Icon_PictoIcon_Pause.png │ │ │ │ ├── Icon_PictoIcon_Pause.png.meta │ │ │ │ ├── Icon_PictoIcon_Play.png │ │ │ │ ├── Icon_PictoIcon_Play.png.meta │ │ │ │ ├── Icon_PictoIcon_Prev01.png │ │ │ │ ├── Icon_PictoIcon_Prev01.png.meta │ │ │ │ ├── Icon_PictoIcon_Prev02.png │ │ │ │ ├── Icon_PictoIcon_Prev02.png.meta │ │ │ │ ├── Icon_PictoIcon_Resume.png │ │ │ │ ├── Icon_PictoIcon_Resume.png.meta │ │ │ │ ├── Icon_PictoIcon_Search.png │ │ │ │ ├── Icon_PictoIcon_Search.png.meta │ │ │ │ ├── Icon_PictoIcon_Setting.png │ │ │ │ ├── Icon_PictoIcon_Setting.png.meta │ │ │ │ ├── Icon_PictoIcon_Setting02.png │ │ │ │ ├── Icon_PictoIcon_Setting02.png.meta │ │ │ │ ├── Icon_PictoIcon_Sound_off.png │ │ │ │ ├── Icon_PictoIcon_Sound_off.png.meta │ │ │ │ ├── Icon_PictoIcon_Sound_on.png │ │ │ │ ├── Icon_PictoIcon_Sound_on.png.meta │ │ │ │ ├── Icon_PictoIcon_Time.png │ │ │ │ ├── Icon_PictoIcon_Time.png.meta │ │ │ │ ├── Icon_PictoIcon_TimeColon.png │ │ │ │ ├── Icon_PictoIcon_TimeColon.png.meta │ │ │ │ ├── Icon_PictoIcon_Timer.png │ │ │ │ ├── Icon_PictoIcon_Timer.png.meta │ │ │ │ ├── Icon_PictoIcon_Wifi.png │ │ │ │ ├── Icon_PictoIcon_Wifi.png.meta │ │ │ │ ├── Icon_Reward_Pass_ax.png │ │ │ │ ├── Icon_Reward_Pass_ax.png.meta │ │ │ │ ├── Icon_Reward_Pass_book.png │ │ │ │ ├── Icon_Reward_Pass_book.png.meta │ │ │ │ ├── Icon_Reward_Pass_clover.png │ │ │ │ ├── Icon_Reward_Pass_clover.png.meta │ │ │ │ ├── Icon_Reward_Pass_gem.png │ │ │ │ ├── Icon_Reward_Pass_gem.png.meta │ │ │ │ ├── Icon_Reward_Pass_glove.png │ │ │ │ ├── Icon_Reward_Pass_glove.png.meta │ │ │ │ ├── Icon_Reward_Pass_gold.png │ │ │ │ ├── Icon_Reward_Pass_gold.png.meta │ │ │ │ ├── Icon_Reward_Pass_rune.png │ │ │ │ ├── Icon_Reward_Pass_rune.png.meta │ │ │ │ ├── Icon_RoleIcon_01.png │ │ │ │ ├── Icon_RoleIcon_01.png.meta │ │ │ │ ├── Icon_RoleIcon_02.png │ │ │ │ ├── Icon_RoleIcon_02.png.meta │ │ │ │ ├── Icon_RoleIcon_03.png │ │ │ │ ├── Icon_RoleIcon_03.png.meta │ │ │ │ ├── Icon_RoleIcon_04.png │ │ │ │ ├── Icon_RoleIcon_04.png.meta │ │ │ │ ├── Icon_ShopIcon_Gem0.png │ │ │ │ ├── Icon_ShopIcon_Gem0.png.meta │ │ │ │ ├── Icon_ShopIcon_Gem1.png │ │ │ │ ├── Icon_ShopIcon_Gem1.png.meta │ │ │ │ ├── Icon_ShopIcon_Gem2.png │ │ │ │ ├── Icon_ShopIcon_Gem2.png.meta │ │ │ │ ├── Icon_ShopIcon_Gem3.png │ │ │ │ ├── Icon_ShopIcon_Gem3.png.meta │ │ │ │ ├── Icon_ShopIcon_Gem4.png │ │ │ │ ├── Icon_ShopIcon_Gem4.png.meta │ │ │ │ ├── Icon_ShopIcon_GemBox.png │ │ │ │ ├── Icon_ShopIcon_GemBox.png.meta │ │ │ │ ├── Icon_ShopIcon_Gold0.png │ │ │ │ ├── Icon_ShopIcon_Gold0.png.meta │ │ │ │ ├── Icon_ShopIcon_Gold1.png │ │ │ │ ├── Icon_ShopIcon_Gold1.png.meta │ │ │ │ ├── Icon_ShopIcon_Gold2.png │ │ │ │ ├── Icon_ShopIcon_Gold2.png.meta │ │ │ │ ├── Icon_ShopIcon_Gold3.png │ │ │ │ ├── Icon_ShopIcon_Gold3.png.meta │ │ │ │ ├── Icon_ShopIcon_Gold4.png │ │ │ │ ├── Icon_ShopIcon_Gold4.png.meta │ │ │ │ ├── Icon_ShopIcon_SpecialChest.png │ │ │ │ ├── Icon_ShopIcon_SpecialChest.png.meta │ │ │ │ ├── Icon_SkilIcon_Frame_Orange.png │ │ │ │ ├── Icon_SkilIcon_Frame_Orange.png.meta │ │ │ │ ├── Icon_SkilIcon_Frame_Pink.png │ │ │ │ ├── Icon_SkilIcon_Frame_Pink.png.meta │ │ │ │ ├── Icon_SkilIcon_Frame_Yellow.png │ │ │ │ ├── Icon_SkilIcon_Frame_Yellow.png.meta │ │ │ │ ├── Icon_SkilIcon_Icon1.png │ │ │ │ ├── Icon_SkilIcon_Icon1.png.meta │ │ │ │ ├── Icon_SkilIcon_Icon2.png │ │ │ │ ├── Icon_SkilIcon_Icon2.png.meta │ │ │ │ ├── Icon_SkilIcon_Icon3.png │ │ │ │ ├── Icon_SkilIcon_Icon3.png.meta │ │ │ │ ├── Icon_SkillIcon_Passive_Get.png │ │ │ │ ├── Icon_SkillIcon_Passive_Get.png.meta │ │ │ │ ├── Icon_StatsIcon_Boss.Png │ │ │ │ ├── Icon_StatsIcon_Boss.Png.meta │ │ │ │ ├── Icon_StatsIcon_Critical.png │ │ │ │ ├── Icon_StatsIcon_Critical.png.meta │ │ │ │ ├── Icon_StatsIcon_Crown.Png │ │ │ │ ├── Icon_StatsIcon_Crown.Png.meta │ │ │ │ ├── Icon_StatsIcon_Damage.png │ │ │ │ ├── Icon_StatsIcon_Damage.png.meta │ │ │ │ ├── Icon_StatsIcon_Defense.png │ │ │ │ ├── Icon_StatsIcon_Defense.png.meta │ │ │ │ ├── Icon_StatsIcon_Fist.Png │ │ │ │ ├── Icon_StatsIcon_Fist.Png.meta │ │ │ │ ├── Icon_StatsIcon_Hp01.png │ │ │ │ ├── Icon_StatsIcon_Hp01.png.meta │ │ │ │ ├── Icon_StatsIcon_Hp02.png │ │ │ │ ├── Icon_StatsIcon_Hp02.png.meta │ │ │ │ ├── Icon_StatsIcon_Skeleton.Png │ │ │ │ ├── Icon_StatsIcon_Skeleton.Png.meta │ │ │ │ ├── Icon_StatsIcon_Speed.png │ │ │ │ ├── Icon_StatsIcon_Speed.png.meta │ │ │ │ ├── Icon_StatsIcon_Vs.Png │ │ │ │ └── Icon_StatsIcon_Vs.Png.meta │ │ │ │ ├── Demo_Icon_ItemIcons(Original).meta │ │ │ │ ├── Demo_Icon_ItemIcons(Original) │ │ │ │ ├── Icon_Adremove.Png │ │ │ │ ├── Icon_Adremove.Png.meta │ │ │ │ ├── Icon_Bag.Png │ │ │ │ ├── Icon_Bag.Png.meta │ │ │ │ ├── Icon_Battle.Png │ │ │ │ ├── Icon_Battle.Png.meta │ │ │ │ ├── Icon_Bolt.Png │ │ │ │ ├── Icon_Bolt.Png.meta │ │ │ │ ├── Icon_Book.Png │ │ │ │ ├── Icon_Book.Png.meta │ │ │ │ ├── Icon_Booster.Png │ │ │ │ ├── Icon_Booster.Png.meta │ │ │ │ ├── Icon_Boots.Png │ │ │ │ ├── Icon_Boots.Png.meta │ │ │ │ ├── Icon_Boxing Gloves.Png │ │ │ │ ├── Icon_Boxing Gloves.Png.meta │ │ │ │ ├── Icon_Cards.Png │ │ │ │ ├── Icon_Cards.Png.meta │ │ │ │ ├── Icon_Chest.Png │ │ │ │ ├── Icon_Chest.Png.meta │ │ │ │ ├── Icon_Clan.Png │ │ │ │ ├── Icon_Clan.Png.meta │ │ │ │ ├── Icon_Clover.Png │ │ │ │ ├── Icon_Clover.Png.meta │ │ │ │ ├── Icon_Compass.Png │ │ │ │ ├── Icon_Compass.Png.meta │ │ │ │ ├── Icon_Crown.Png │ │ │ │ ├── Icon_Crown.Png.meta │ │ │ │ ├── Icon_Dice.Png │ │ │ │ ├── Icon_Dice.Png.meta │ │ │ │ ├── Icon_Dice_Yellow.Png │ │ │ │ ├── Icon_Dice_Yellow.Png.meta │ │ │ │ ├── Icon_DogGum.Png │ │ │ │ ├── Icon_DogGum.Png.meta │ │ │ │ ├── Icon_Egg.Png │ │ │ │ ├── Icon_Egg.Png.meta │ │ │ │ ├── Icon_Emergency_Bag.Png │ │ │ │ ├── Icon_Emergency_Bag.Png.meta │ │ │ │ ├── Icon_Energy_Green.Png │ │ │ │ ├── Icon_Energy_Green.Png.meta │ │ │ │ ├── Icon_Energy_Yellow.Png │ │ │ │ ├── Icon_Energy_Yellow.Png.meta │ │ │ │ ├── Icon_Flippers.Png │ │ │ │ ├── Icon_Flippers.Png.meta │ │ │ │ ├── Icon_Food_Can.Png │ │ │ │ ├── Icon_Food_Can.Png.meta │ │ │ │ ├── Icon_Friends.Png │ │ │ │ ├── Icon_Friends.Png.meta │ │ │ │ ├── Icon_GearWheels.Png │ │ │ │ ├── Icon_GearWheels.Png.meta │ │ │ │ ├── Icon_Gem01_Blue.Png │ │ │ │ ├── Icon_Gem01_Blue.Png.meta │ │ │ │ ├── Icon_Gem01_Green.Png │ │ │ │ ├── Icon_Gem01_Green.Png.meta │ │ │ │ ├── Icon_Gem01_Purple.Png │ │ │ │ ├── Icon_Gem01_Purple.Png.meta │ │ │ │ ├── Icon_Gem02_Hexagon_Blue.Png │ │ │ │ ├── Icon_Gem02_Hexagon_Blue.Png.meta │ │ │ │ ├── Icon_Gem02_Hexagon_Green.Png │ │ │ │ ├── Icon_Gem02_Hexagon_Green.Png.meta │ │ │ │ ├── Icon_Gem02_Hexagon_Purple.Png │ │ │ │ ├── Icon_Gem02_Hexagon_Purple.Png.meta │ │ │ │ ├── Icon_Gem03_Diamond_Blue.Png │ │ │ │ ├── Icon_Gem03_Diamond_Blue.Png.meta │ │ │ │ ├── Icon_Gem03_Diamond_Green.Png │ │ │ │ ├── Icon_Gem03_Diamond_Green.Png.meta │ │ │ │ ├── Icon_Gem03_Diamond_Purple.Png │ │ │ │ ├── Icon_Gem03_Diamond_Purple.Png.meta │ │ │ │ ├── Icon_Gem04_Octagon_Blue.Png │ │ │ │ ├── Icon_Gem04_Octagon_Blue.Png.meta │ │ │ │ ├── Icon_Gem04_Octagon_Purple.Png │ │ │ │ ├── Icon_Gem04_Octagon_Purple.Png.meta │ │ │ │ ├── Icon_Gem04_Octagon_Red.Png │ │ │ │ ├── Icon_Gem04_Octagon_Red.Png.meta │ │ │ │ ├── Icon_Gem04_Octagon_Yellow.Png │ │ │ │ ├── Icon_Gem04_Octagon_Yellow.Png.meta │ │ │ │ ├── Icon_Gem_Pearl.Png │ │ │ │ ├── Icon_Gem_Pearl.Png.meta │ │ │ │ ├── Icon_Gems.Png │ │ │ │ ├── Icon_Gems.Png.meta │ │ │ │ ├── Icon_Gift.Png │ │ │ │ ├── Icon_Gift.Png.meta │ │ │ │ ├── Icon_Gold.Png │ │ │ │ ├── Icon_Gold.Png.meta │ │ │ │ ├── Icon_Golden_Pass.Png │ │ │ │ ├── Icon_Golden_Pass.Png.meta │ │ │ │ ├── Icon_Golds.Png │ │ │ │ ├── Icon_Golds.Png.meta │ │ │ │ ├── Icon_Gps.Png │ │ │ │ ├── Icon_Gps.Png.meta │ │ │ │ ├── Icon_Guild.Png │ │ │ │ ├── Icon_Guild.Png.meta │ │ │ │ ├── Icon_Hammer.Png │ │ │ │ ├── Icon_Hammer.Png.meta │ │ │ │ ├── Icon_Heart.Png │ │ │ │ ├── Icon_Heart.Png.meta │ │ │ │ ├── Icon_Horsesheos.Png │ │ │ │ ├── Icon_Horsesheos.Png.meta │ │ │ │ ├── Icon_Hourglass.Png │ │ │ │ ├── Icon_Hourglass.Png.meta │ │ │ │ ├── Icon_Key_Bronze.Png │ │ │ │ ├── Icon_Key_Bronze.Png.meta │ │ │ │ ├── Icon_Key_Gold.Png │ │ │ │ ├── Icon_Key_Gold.Png.meta │ │ │ │ ├── Icon_Key_Silver.Png │ │ │ │ ├── Icon_Key_Silver.Png.meta │ │ │ │ ├── Icon_Laurel.Png │ │ │ │ ├── Icon_Laurel.Png.meta │ │ │ │ ├── Icon_Lock.Png │ │ │ │ ├── Icon_Lock.Png.meta │ │ │ │ ├── Icon_Magnetic.Png │ │ │ │ ├── Icon_Magnetic.Png.meta │ │ │ │ ├── Icon_Mail.Png │ │ │ │ ├── Icon_Mail.Png.meta │ │ │ │ ├── Icon_Mana.Png │ │ │ │ ├── Icon_Mana.Png.meta │ │ │ │ ├── Icon_Map.Png │ │ │ │ ├── Icon_Map.Png.meta │ │ │ │ ├── Icon_Megaphone.Png │ │ │ │ ├── Icon_Megaphone.Png.meta │ │ │ │ ├── Icon_Missile.Png │ │ │ │ ├── Icon_Missile.Png.meta │ │ │ │ ├── Icon_News.Png │ │ │ │ ├── Icon_News.Png.meta │ │ │ │ ├── Icon_Nut.Png │ │ │ │ ├── Icon_Nut.Png.meta │ │ │ │ ├── Icon_Oil.Png │ │ │ │ ├── Icon_Oil.Png.meta │ │ │ │ ├── Icon_Potion01_Blue.Png │ │ │ │ ├── Icon_Potion01_Blue.Png.meta │ │ │ │ ├── Icon_Potion01_Purple.Png │ │ │ │ ├── Icon_Potion01_Purple.Png.meta │ │ │ │ ├── Icon_Potion01_Red.Png │ │ │ │ ├── Icon_Potion01_Red.Png.meta │ │ │ │ ├── Icon_Potion02_Green.Png │ │ │ │ ├── Icon_Potion02_Green.Png.meta │ │ │ │ ├── Icon_Potion02_Purple.Png │ │ │ │ ├── Icon_Potion02_Purple.Png.meta │ │ │ │ ├── Icon_Potion02_Red.Png │ │ │ │ ├── Icon_Potion02_Red.Png.meta │ │ │ │ ├── Icon_Pumkin.Png │ │ │ │ ├── Icon_Pumkin.Png.meta │ │ │ │ ├── Icon_Quest.Png │ │ │ │ ├── Icon_Quest.Png.meta │ │ │ │ ├── Icon_Ranking.Png │ │ │ │ ├── Icon_Ranking.Png.meta │ │ │ │ ├── Icon_Shield.Png │ │ │ │ ├── Icon_Shield.Png.meta │ │ │ │ ├── Icon_Shop.Png │ │ │ │ ├── Icon_Shop.Png.meta │ │ │ │ ├── Icon_Shovel.Png │ │ │ │ ├── Icon_Shovel.Png.meta │ │ │ │ ├── Icon_Star.Png │ │ │ │ ├── Icon_Star.Png.meta │ │ │ │ ├── Icon_Star_Red.Png │ │ │ │ ├── Icon_Star_Red.Png.meta │ │ │ │ ├── Icon_Stopwatch.Png │ │ │ │ ├── Icon_Stopwatch.Png.meta │ │ │ │ ├── Icon_Sword.Png │ │ │ │ ├── Icon_Sword.Png.meta │ │ │ │ ├── Icon_Target.Png │ │ │ │ ├── Icon_Target.Png.meta │ │ │ │ ├── Icon_Timer.Png │ │ │ │ ├── Icon_Timer.Png.meta │ │ │ │ ├── Icon_Tooth.Png │ │ │ │ ├── Icon_Tooth.Png.meta │ │ │ │ ├── Icon_Trophy.Png │ │ │ │ ├── Icon_Trophy.Png.meta │ │ │ │ ├── icon_Bomb_Bomb.Png │ │ │ │ ├── icon_Bomb_Bomb.Png.meta │ │ │ │ ├── icon_Bomb_Dynamite.Png │ │ │ │ ├── icon_Bomb_Dynamite.Png.meta │ │ │ │ ├── icon_Bomb_LandMine.Png │ │ │ │ ├── icon_Bomb_LandMine.Png.meta │ │ │ │ ├── icon_Food_Meat.Png │ │ │ │ ├── icon_Food_Meat.Png.meta │ │ │ │ ├── icon_Food_Pizza.Png │ │ │ │ ├── icon_Food_Pizza.Png.meta │ │ │ │ ├── icon_Food_Shell.Png │ │ │ │ └── icon_Food_Shell.Png.meta │ │ │ │ ├── Demo_Icon_RuneIcons(Original).meta │ │ │ │ ├── Demo_Icon_RuneIcons(Original) │ │ │ │ ├── Icon_RuneSample_l_1.png │ │ │ │ ├── Icon_RuneSample_l_1.png.meta │ │ │ │ ├── Icon_RuneSample_l_2.Png │ │ │ │ ├── Icon_RuneSample_l_2.Png.meta │ │ │ │ ├── Icon_RuneSample_s_1.Png │ │ │ │ ├── Icon_RuneSample_s_1.Png.meta │ │ │ │ ├── Icon_RuneSample_s_2.Png │ │ │ │ ├── Icon_RuneSample_s_2.Png.meta │ │ │ │ ├── Icon_RuneSample_s_3.Png │ │ │ │ ├── Icon_RuneSample_s_3.Png.meta │ │ │ │ ├── RuneIcon0_Ball_Count.Png │ │ │ │ ├── RuneIcon0_Ball_Count.Png.meta │ │ │ │ ├── RuneIcon0_Ball_Health.Png │ │ │ │ ├── RuneIcon0_Ball_Health.Png.meta │ │ │ │ ├── RuneIcon0_Buff.Png │ │ │ │ ├── RuneIcon0_Buff.Png.meta │ │ │ │ ├── RuneIcon0_Critical_Chance.Png │ │ │ │ ├── RuneIcon0_Critical_Chance.Png.meta │ │ │ │ ├── RuneIcon0_Critical_Damage.Png │ │ │ │ ├── RuneIcon0_Critical_Damage.Png.meta │ │ │ │ ├── RuneIcon0_Damage.Png │ │ │ │ ├── RuneIcon0_Damage.Png.meta │ │ │ │ ├── RuneIcon0_Debuff.Png │ │ │ │ ├── RuneIcon0_Debuff.Png.meta │ │ │ │ ├── RuneIcon0_Get_Coin.Png │ │ │ │ ├── RuneIcon0_Get_Coin.Png.meta │ │ │ │ ├── RuneIcon0_Get_Score.Png │ │ │ │ ├── RuneIcon0_Get_Score.Png.meta │ │ │ │ ├── RuneIcon0_Passive.Png │ │ │ │ ├── RuneIcon0_Passive.Png.meta │ │ │ │ ├── RuneIcon1_Ball_Count.Png │ │ │ │ ├── RuneIcon1_Ball_Count.Png.meta │ │ │ │ ├── RuneIcon1_Ball_Health.Png │ │ │ │ ├── RuneIcon1_Ball_Health.Png.meta │ │ │ │ ├── RuneIcon1_Buff.Png │ │ │ │ ├── RuneIcon1_Buff.Png.meta │ │ │ │ ├── RuneIcon1_Critical_Chance.Png │ │ │ │ ├── RuneIcon1_Critical_Chance.Png.meta │ │ │ │ ├── RuneIcon1_Critical_Damage.Png │ │ │ │ ├── RuneIcon1_Critical_Damage.Png.meta │ │ │ │ ├── RuneIcon1_Damage.Png │ │ │ │ ├── RuneIcon1_Damage.Png.meta │ │ │ │ ├── RuneIcon1_Debuff.Png │ │ │ │ ├── RuneIcon1_Debuff.Png.meta │ │ │ │ ├── RuneIcon1_Get_Coin.Png │ │ │ │ ├── RuneIcon1_Get_Coin.Png.meta │ │ │ │ ├── RuneIcon1_Get_Score.Png │ │ │ │ ├── RuneIcon1_Get_Score.Png.meta │ │ │ │ ├── RuneIcon1_Passive.Png │ │ │ │ ├── RuneIcon1_Passive.Png.meta │ │ │ │ ├── RuneIcon2_Ball_Count.Png │ │ │ │ ├── RuneIcon2_Ball_Count.Png.meta │ │ │ │ ├── RuneIcon2_Ball_Health.Png │ │ │ │ ├── RuneIcon2_Ball_Health.Png.meta │ │ │ │ ├── RuneIcon2_Buff.Png │ │ │ │ ├── RuneIcon2_Buff.Png.meta │ │ │ │ ├── RuneIcon2_Critical_Chance.Png │ │ │ │ ├── RuneIcon2_Critical_Chance.Png.meta │ │ │ │ ├── RuneIcon2_Critical_Damage.Png │ │ │ │ ├── RuneIcon2_Critical_Damage.Png.meta │ │ │ │ ├── RuneIcon2_Damage.Png │ │ │ │ ├── RuneIcon2_Damage.Png.meta │ │ │ │ ├── RuneIcon2_Debuff.Png │ │ │ │ ├── RuneIcon2_Debuff.Png.meta │ │ │ │ ├── RuneIcon2_Get_Coin.Png │ │ │ │ ├── RuneIcon2_Get_Coin.Png.meta │ │ │ │ ├── RuneIcon2_Get_Score.Png │ │ │ │ ├── RuneIcon2_Get_Score.Png.meta │ │ │ │ ├── RuneIcon2_Passive.Png │ │ │ │ ├── RuneIcon2_Passive.Png.meta │ │ │ │ ├── RuneIcon3_Ball_Count.Png │ │ │ │ ├── RuneIcon3_Ball_Count.Png.meta │ │ │ │ ├── RuneIcon3_Ball_Health.Png │ │ │ │ ├── RuneIcon3_Ball_Health.Png.meta │ │ │ │ ├── RuneIcon3_Buff.Png │ │ │ │ ├── RuneIcon3_Buff.Png.meta │ │ │ │ ├── RuneIcon3_Critical_Chance.Png │ │ │ │ ├── RuneIcon3_Critical_Chance.Png.meta │ │ │ │ ├── RuneIcon3_Critical_Damage.Png │ │ │ │ ├── RuneIcon3_Critical_Damage.Png.meta │ │ │ │ ├── RuneIcon3_Damage.Png │ │ │ │ ├── RuneIcon3_Damage.Png.meta │ │ │ │ ├── RuneIcon3_Debuff.Png │ │ │ │ ├── RuneIcon3_Debuff.Png.meta │ │ │ │ ├── RuneIcon3_Get_Coin.Png │ │ │ │ ├── RuneIcon3_Get_Coin.Png.meta │ │ │ │ ├── RuneIcon3_Get_Score.Png │ │ │ │ ├── RuneIcon3_Get_Score.Png.meta │ │ │ │ ├── RuneIcon3_Passive.Png │ │ │ │ ├── RuneIcon3_Passive.Png.meta │ │ │ │ ├── RuneIcon4_Ball_Count.Png │ │ │ │ ├── RuneIcon4_Ball_Count.Png.meta │ │ │ │ ├── RuneIcon4_Ball_Health.Png │ │ │ │ ├── RuneIcon4_Ball_Health.Png.meta │ │ │ │ ├── RuneIcon4_Buff.Png │ │ │ │ ├── RuneIcon4_Buff.Png.meta │ │ │ │ ├── RuneIcon4_Critical_Chance.Png │ │ │ │ ├── RuneIcon4_Critical_Chance.Png.meta │ │ │ │ ├── RuneIcon4_Critical_Damage.Png │ │ │ │ ├── RuneIcon4_Critical_Damage.Png.meta │ │ │ │ ├── RuneIcon4_Damage.Png │ │ │ │ ├── RuneIcon4_Damage.Png.meta │ │ │ │ ├── RuneIcon4_Debuff.Png │ │ │ │ ├── RuneIcon4_Debuff.Png.meta │ │ │ │ ├── RuneIcon4_Get_Coin.Png │ │ │ │ ├── RuneIcon4_Get_Coin.Png.meta │ │ │ │ ├── RuneIcon4_Get_Score.Png │ │ │ │ ├── RuneIcon4_Get_Score.Png.meta │ │ │ │ ├── RuneIcon4_Passive.Png │ │ │ │ ├── RuneIcon4_Passive.Png.meta │ │ │ │ ├── RuneIcon5_Ball_Count.Png │ │ │ │ ├── RuneIcon5_Ball_Count.Png.meta │ │ │ │ ├── RuneIcon5_Ball_Health.Png │ │ │ │ ├── RuneIcon5_Ball_Health.Png.meta │ │ │ │ ├── RuneIcon5_Buff.Png │ │ │ │ ├── RuneIcon5_Buff.Png.meta │ │ │ │ ├── RuneIcon5_Critical_Chance.Png │ │ │ │ ├── RuneIcon5_Critical_Chance.Png.meta │ │ │ │ ├── RuneIcon5_Critical_Damage.Png │ │ │ │ ├── RuneIcon5_Critical_Damage.Png.meta │ │ │ │ ├── RuneIcon5_Damage.Png │ │ │ │ ├── RuneIcon5_Damage.Png.meta │ │ │ │ ├── RuneIcon5_Damage_Large.Png │ │ │ │ ├── RuneIcon5_Damage_Large.Png.meta │ │ │ │ ├── RuneIcon5_Debuff.Png │ │ │ │ ├── RuneIcon5_Debuff.Png.meta │ │ │ │ ├── RuneIcon5_Get_Coin.Png │ │ │ │ ├── RuneIcon5_Get_Coin.Png.meta │ │ │ │ ├── RuneIcon5_Get_Score.Png │ │ │ │ ├── RuneIcon5_Get_Score.Png.meta │ │ │ │ ├── RuneIcon5_Passive.Png │ │ │ │ ├── RuneIcon5_Passive.Png.meta │ │ │ │ ├── RuneIcon_Frame_0.png │ │ │ │ ├── RuneIcon_Frame_0.png.meta │ │ │ │ ├── RuneIcon_Frame_1.png │ │ │ │ ├── RuneIcon_Frame_1.png.meta │ │ │ │ ├── RuneIcon_Frame_2.png │ │ │ │ ├── RuneIcon_Frame_2.png.meta │ │ │ │ ├── RuneIcon_Frame_3.png │ │ │ │ ├── RuneIcon_Frame_3.png.meta │ │ │ │ ├── RuneIcon_Frame_4.png │ │ │ │ ├── RuneIcon_Frame_4.png.meta │ │ │ │ ├── RuneIcon_Frame_5.png │ │ │ │ └── RuneIcon_Frame_5.png.meta │ │ │ │ ├── Demo_Image.meta │ │ │ │ ├── Demo_Image │ │ │ │ ├── Common_Glow_Circle_White.png │ │ │ │ ├── Common_Glow_Circle_White.png.meta │ │ │ │ ├── Common_Golw_White.png │ │ │ │ ├── Common_Golw_White.png.meta │ │ │ │ ├── Common_White_Box.png │ │ │ │ ├── Common_White_Box.png.meta │ │ │ │ ├── Common_White_Oval.png │ │ │ │ ├── Common_White_Oval.png.meta │ │ │ │ ├── Image_StageTheme_Beach.png │ │ │ │ ├── Image_StageTheme_Beach.png.meta │ │ │ │ ├── Image_StageTheme_City.png │ │ │ │ ├── Image_StageTheme_City.png.meta │ │ │ │ ├── Image_StageTheme_Forest.png │ │ │ │ ├── Image_StageTheme_Forest.png.meta │ │ │ │ ├── Image_TitleLogo.png │ │ │ │ ├── Image_TitleLogo.png.meta │ │ │ │ ├── Image_Vs_text.png │ │ │ │ ├── Image_Vs_text.png.meta │ │ │ │ ├── Line_SkyBlue.png │ │ │ │ └── Line_SkyBlue.png.meta │ │ │ │ ├── Demo_Play.meta │ │ │ │ ├── Demo_Play │ │ │ │ ├── Play_ActionText_Frame_Blue.png │ │ │ │ ├── Play_ActionText_Frame_Blue.png.meta │ │ │ │ ├── Play_ActionText_Frame_Orange.png │ │ │ │ ├── Play_ActionText_Frame_Orange.png.meta │ │ │ │ ├── Play_ActionText_Frame_Purple.png │ │ │ │ ├── Play_ActionText_Frame_Purple.png.meta │ │ │ │ ├── Play_ActionText_Frame_Red.png │ │ │ │ ├── Play_ActionText_Frame_Red.png.meta │ │ │ │ ├── Play_Character_FocusTarget.png │ │ │ │ ├── Play_Character_FocusTarget.png.meta │ │ │ │ ├── Play_Joystick_bg.png │ │ │ │ ├── Play_Joystick_bg.png.meta │ │ │ │ ├── Play_Joystick_handle.png │ │ │ │ ├── Play_Joystick_handle.png.meta │ │ │ │ ├── Play_Joystick_move_focus_bl.png │ │ │ │ ├── Play_Joystick_move_focus_bl.png.meta │ │ │ │ ├── Play_Joystick_move_focus_br.png │ │ │ │ ├── Play_Joystick_move_focus_br.png.meta │ │ │ │ ├── Play_Joystick_move_focus_tl.png │ │ │ │ ├── Play_Joystick_move_focus_tl.png.meta │ │ │ │ ├── Play_Joystick_move_focus_tr.png │ │ │ │ ├── Play_Joystick_move_focus_tr.png.meta │ │ │ │ ├── Play_Minimap_Bg_Frame.png │ │ │ │ ├── Play_Minimap_Bg_Frame.png.meta │ │ │ │ ├── Play_Minimap_Bg_Sample.png │ │ │ │ ├── Play_Minimap_Bg_Sample.png.meta │ │ │ │ ├── Play_Minimap_Character_Bg_Frame.png │ │ │ │ ├── Play_Minimap_Character_Bg_Frame.png.meta │ │ │ │ ├── Play_Minimap_Character_Bg_InBase.png │ │ │ │ ├── Play_Minimap_Character_Bg_InBase.png.meta │ │ │ │ ├── Play_Minimap_Character_Icon_1.png │ │ │ │ ├── Play_Minimap_Character_Icon_1.png.meta │ │ │ │ ├── Play_Minimap_Character_Icon_2.png │ │ │ │ ├── Play_Minimap_Character_Icon_2.png.meta │ │ │ │ ├── Play_Minimap_Character_Icon_3.png │ │ │ │ ├── Play_Minimap_Character_Icon_3.png.meta │ │ │ │ ├── Play_Minimap_Character_Icon_4.png │ │ │ │ ├── Play_Minimap_Character_Icon_4.png.meta │ │ │ │ ├── Play_Minimap_Icon_1.png │ │ │ │ ├── Play_Minimap_Icon_1.png.meta │ │ │ │ ├── Play_Minimap_Icon_2.png │ │ │ │ ├── Play_Minimap_Icon_2.png.meta │ │ │ │ ├── Play_Minimap_Point_Blue.png │ │ │ │ ├── Play_Minimap_Point_Blue.png.meta │ │ │ │ ├── Play_Minimap_Point_Red.png │ │ │ │ ├── Play_Minimap_Point_Red.png.meta │ │ │ │ ├── Play_Minimap_Point_RedGlow.png │ │ │ │ ├── Play_Minimap_Point_RedGlow.png.meta │ │ │ │ ├── Play_Roulette_Arrow.png │ │ │ │ ├── Play_Roulette_Arrow.png.meta │ │ │ │ ├── Play_Roulette_Bg.png │ │ │ │ ├── Play_Roulette_Bg.png.meta │ │ │ │ ├── Play_Roulette_Btn_spin.png │ │ │ │ ├── Play_Roulette_Btn_spin.png.meta │ │ │ │ ├── Play_Roulette_Gold.png │ │ │ │ ├── Play_Roulette_Gold.png.meta │ │ │ │ ├── Play_Roulette_wheel.png │ │ │ │ ├── Play_Roulette_wheel.png.meta │ │ │ │ ├── Play_Skill_0.png │ │ │ │ ├── Play_Skill_0.png.meta │ │ │ │ ├── Play_Skill_0_dimed.png │ │ │ │ ├── Play_Skill_0_dimed.png.meta │ │ │ │ ├── Play_Skill_1.png │ │ │ │ ├── Play_Skill_1.png.meta │ │ │ │ ├── Play_Skill_1_dimed.png │ │ │ │ ├── Play_Skill_1_dimed.png.meta │ │ │ │ ├── Play_Skill_2.png │ │ │ │ ├── Play_Skill_2.png.meta │ │ │ │ ├── Play_Skill_2_dimed.png │ │ │ │ ├── Play_Skill_2_dimed.png.meta │ │ │ │ ├── Play_Skill_Bg_Frame.png │ │ │ │ ├── Play_Skill_Bg_Frame.png.meta │ │ │ │ ├── Play_Skill_Bg_Frame_Dim.png │ │ │ │ ├── Play_Skill_Bg_Frame_Dim.png.meta │ │ │ │ ├── Play_Skill_Bg_Frame_Orange.png │ │ │ │ ├── Play_Skill_Bg_Frame_Orange.png.meta │ │ │ │ ├── Play_Skill_Bg_InBase.png │ │ │ │ ├── Play_Skill_Bg_InBase.png.meta │ │ │ │ ├── Play_Skill_Cooltime.png │ │ │ │ ├── Play_Skill_Cooltime.png.meta │ │ │ │ ├── Play_Time_Bg_pvp.png │ │ │ │ └── Play_Time_Bg_pvp.png.meta │ │ │ │ ├── Demo_UI.meta │ │ │ │ └── Demo_UI │ │ │ │ ├── InputField_Frame01_d.png │ │ │ │ ├── InputField_Frame01_d.png.meta │ │ │ │ ├── InputField_Frame01_n.png │ │ │ │ ├── InputField_Frame01_n.png.meta │ │ │ │ ├── InputField_Frame02.png │ │ │ │ ├── InputField_Frame02.png.meta │ │ │ │ ├── InputField_Frame03.png │ │ │ │ ├── InputField_Frame03.png.meta │ │ │ │ ├── InputField_Icon_Account_0.png │ │ │ │ ├── InputField_Icon_Account_0.png.meta │ │ │ │ ├── InputField_Icon_Account_1.png │ │ │ │ ├── InputField_Icon_Account_1.png.meta │ │ │ │ ├── InputField_Icon_Email_0.png │ │ │ │ ├── InputField_Icon_Email_0.png.meta │ │ │ │ ├── InputField_Icon_Email_1.png │ │ │ │ ├── InputField_Icon_Email_1.png.meta │ │ │ │ ├── InputField_Icon_Pw_0.png │ │ │ │ ├── InputField_Icon_Pw_0.png.meta │ │ │ │ ├── InputField_icon_Pw_1.png │ │ │ │ ├── InputField_icon_Pw_1.png.meta │ │ │ │ ├── Notify_Count_Green_l.png │ │ │ │ ├── Notify_Count_Green_l.png.meta │ │ │ │ ├── Notify_Count_Green_s.png │ │ │ │ ├── Notify_Count_Green_s.png.meta │ │ │ │ ├── Notify_Count_Red_l.png │ │ │ │ ├── Notify_Count_Red_l.png.meta │ │ │ │ ├── Notify_Count_Red_s.png │ │ │ │ ├── Notify_Count_Red_s.png.meta │ │ │ │ ├── StatusBarBtn_Add_Green.png │ │ │ │ ├── StatusBarBtn_Add_Green.png.meta │ │ │ │ ├── StatusBarBtn_Add_Purple.png │ │ │ │ ├── StatusBarBtn_Add_Purple.png.meta │ │ │ │ ├── StatusBarBtn_Add_Yellow.png │ │ │ │ ├── StatusBarBtn_Add_Yellow.png.meta │ │ │ │ ├── StatusBarFrame_White.png │ │ │ │ ├── StatusBarFrame_White.png.meta │ │ │ │ ├── StatusBarIcon_Energy.png │ │ │ │ ├── StatusBarIcon_Energy.png.meta │ │ │ │ ├── StatusBarIcon_Gem.png │ │ │ │ ├── StatusBarIcon_Gem.png.meta │ │ │ │ ├── StatusBarIcon_Gold.png │ │ │ │ ├── StatusBarIcon_Gold.png.meta │ │ │ │ ├── Toggle_CheckBox_Off.png │ │ │ │ ├── Toggle_CheckBox_Off.png.meta │ │ │ │ ├── Toggle_CheckBox_On.png │ │ │ │ ├── Toggle_CheckBox_On.png.meta │ │ │ │ ├── Toggle_Check_Green.png │ │ │ │ ├── Toggle_Check_Green.png.meta │ │ │ │ ├── Toggle_Check_Orange.png │ │ │ │ ├── Toggle_Check_Orange.png.meta │ │ │ │ ├── Toggle_Switch_Off_Frame.png │ │ │ │ ├── Toggle_Switch_Off_Frame.png.meta │ │ │ │ ├── Toggle_Switch_Off_Handle.png │ │ │ │ ├── Toggle_Switch_Off_Handle.png.meta │ │ │ │ ├── Toggle_Switch_On_Frame.png │ │ │ │ ├── Toggle_Switch_On_Frame.png.meta │ │ │ │ ├── Toggle_Switch_On_Handle.png │ │ │ │ ├── Toggle_Switch_On_Handle.png.meta │ │ │ │ ├── User_Picture_Empty.png │ │ │ │ ├── User_Picture_Empty.png.meta │ │ │ │ ├── User_Picture_Sample.png │ │ │ │ ├── User_Picture_Sample.png.meta │ │ │ │ ├── User_Player1_Frame1.png │ │ │ │ ├── User_Player1_Frame1.png.meta │ │ │ │ ├── User_Player1_Frame2.png │ │ │ │ ├── User_Player1_Frame2.png.meta │ │ │ │ ├── User_Player2_Frame1.png │ │ │ │ ├── User_Player2_Frame1.png.meta │ │ │ │ ├── User_Player2_Frame2.png │ │ │ │ └── User_Player2_Frame2.png.meta │ │ ├── Point_off.png │ │ ├── Point_off.png.meta │ │ ├── icon_lock.png │ │ ├── icon_lock.png.meta │ │ ├── switcher_big.png │ │ └── switcher_big.png.meta │ ├── VFX.meta │ └── VFX │ │ ├── Casual RPG VFX.meta │ │ ├── Casual RPG VFX │ │ ├── Demo.meta │ │ ├── Demo │ │ │ ├── Animations.meta │ │ │ ├── Animations │ │ │ │ ├── Fire_anim.anim │ │ │ │ ├── Fire_anim.anim.meta │ │ │ │ ├── Prefabs.controller │ │ │ │ ├── Prefabs.controller.meta │ │ │ │ ├── Prefabs_slash.controller │ │ │ │ ├── Prefabs_slash.controller.meta │ │ │ │ ├── Projectiles01.anim │ │ │ │ ├── Projectiles01.anim.meta │ │ │ │ ├── Projectiles01.controller │ │ │ │ ├── Projectiles01.controller.meta │ │ │ │ ├── Projectiles02.anim │ │ │ │ ├── Projectiles02.anim.meta │ │ │ │ ├── Projectiles02.controller │ │ │ │ ├── Projectiles02.controller.meta │ │ │ │ ├── Slash_anim.anim │ │ │ │ └── Slash_anim.anim.meta │ │ │ ├── Materials.meta │ │ │ ├── Materials │ │ │ │ ├── Capsule_mat.mat │ │ │ │ ├── Capsule_mat.mat.meta │ │ │ │ ├── Floor_mat.mat │ │ │ │ ├── Floor_mat.mat.meta │ │ │ │ ├── grid.png │ │ │ │ ├── grid.png.meta │ │ │ │ ├── grid02.png │ │ │ │ └── grid02.png.meta │ │ │ ├── Models.meta │ │ │ ├── Models │ │ │ │ ├── Floor.fbx │ │ │ │ └── Floor.fbx.meta │ │ │ ├── Scenes.meta │ │ │ ├── Scenes │ │ │ │ ├── Demo_Area_generic.unity │ │ │ │ ├── Demo_Area_generic.unity.meta │ │ │ │ ├── Demo_Backlight_resources.unity │ │ │ │ ├── Demo_Backlight_resources.unity.meta │ │ │ │ ├── Demo_Burst.unity │ │ │ │ ├── Demo_Burst.unity.meta │ │ │ │ ├── Demo_Fire.unity │ │ │ │ ├── Demo_Fire.unity.meta │ │ │ │ ├── Demo_Fire_cartoon.unity │ │ │ │ ├── Demo_Fire_cartoon.unity.meta │ │ │ │ ├── Demo_Fog.unity │ │ │ │ ├── Demo_Fog.unity.meta │ │ │ │ ├── Demo_Loot.unity │ │ │ │ ├── Demo_Loot.unity.meta │ │ │ │ ├── Demo_Orbs.unity │ │ │ │ ├── Demo_Orbs.unity.meta │ │ │ │ ├── Demo_Range_attack01.unity │ │ │ │ ├── Demo_Range_attack01.unity.meta │ │ │ │ ├── Demo_Range_attack02.unity │ │ │ │ ├── Demo_Range_attack02.unity.meta │ │ │ │ ├── Demo_Regeneration.unity │ │ │ │ ├── Demo_Regeneration.unity.meta │ │ │ │ ├── Demo_Shields.unity │ │ │ │ ├── Demo_Shields.unity.meta │ │ │ │ ├── Demo_Slash.unity │ │ │ │ ├── Demo_Slash.unity.meta │ │ │ │ ├── Demo_States.unity │ │ │ │ ├── Demo_States.unity.meta │ │ │ │ ├── Demo_Top_down_shot.unity │ │ │ │ └── Demo_Top_down_shot.unity.meta │ │ │ ├── Scripts.meta │ │ │ └── Scripts │ │ │ │ ├── ObjectsSwitcher.cs │ │ │ │ ├── ObjectsSwitcher.cs.meta │ │ │ │ ├── _InputKeyBoard.cs │ │ │ │ └── _InputKeyBoard.cs.meta │ │ ├── Materials.meta │ │ ├── Materials │ │ │ ├── 1AB_mat.mat │ │ │ ├── 1AB_mat.mat.meta │ │ │ ├── 1Add_mat.mat │ │ │ ├── 1Add_mat.mat.meta │ │ │ ├── AB_01.mat │ │ │ ├── AB_01.mat.meta │ │ │ ├── AB_02.mat │ │ │ ├── AB_02.mat.meta │ │ │ ├── AB_03.mat │ │ │ ├── AB_03.mat.meta │ │ │ ├── AB_offset01.mat │ │ │ ├── AB_offset01.mat.meta │ │ │ ├── AB_offset02.mat │ │ │ ├── AB_offset02.mat.meta │ │ │ ├── AB_offset03.mat │ │ │ ├── AB_offset03.mat.meta │ │ │ ├── AB_offset04.mat │ │ │ ├── AB_offset04.mat.meta │ │ │ ├── AB_offset05.mat │ │ │ ├── AB_offset05.mat.meta │ │ │ ├── Add_01.mat │ │ │ ├── Add_01.mat.meta │ │ │ ├── Add_02.mat │ │ │ ├── Add_02.mat.meta │ │ │ ├── Add_03.mat │ │ │ ├── Add_03.mat.meta │ │ │ ├── Add_offset01.mat │ │ │ ├── Add_offset01.mat.meta │ │ │ ├── Add_offset02.mat │ │ │ ├── Add_offset02.mat.meta │ │ │ ├── Add_offset03.mat │ │ │ ├── Add_offset03.mat.meta │ │ │ ├── Add_offset04.mat │ │ │ ├── Add_offset04.mat.meta │ │ │ ├── Add_offset05.mat │ │ │ ├── Add_offset05.mat.meta │ │ │ ├── Add_offset06.mat │ │ │ └── Add_offset06.mat.meta │ │ ├── Models.meta │ │ ├── Models │ │ │ ├── Cylinder01.fbx │ │ │ ├── Cylinder01.fbx.meta │ │ │ ├── Cylinder02.fbx │ │ │ ├── Cylinder02.fbx.meta │ │ │ ├── Cylinder03.fbx │ │ │ ├── Cylinder03.fbx.meta │ │ │ ├── Cylinder04.fbx │ │ │ ├── Cylinder04.fbx.meta │ │ │ ├── Sphere01.fbx │ │ │ ├── Sphere01.fbx.meta │ │ │ ├── Sphere02.fbx │ │ │ ├── Sphere02.fbx.meta │ │ │ ├── Sphere03.fbx │ │ │ ├── Sphere03.fbx.meta │ │ │ ├── cylinder_high_poly.fbx │ │ │ └── cylinder_high_poly.fbx.meta │ │ ├── Prefabs.meta │ │ ├── Prefabs │ │ │ ├── Area_generic.meta │ │ │ ├── Area_generic │ │ │ │ ├── Area_generic_blue.prefab │ │ │ │ ├── Area_generic_blue.prefab.meta │ │ │ │ ├── Area_generic_blue_outbreak.prefab │ │ │ │ ├── Area_generic_blue_outbreak.prefab.meta │ │ │ │ ├── Area_generic_green.prefab │ │ │ │ ├── Area_generic_green.prefab.meta │ │ │ │ ├── Area_generic_green_outbreak.prefab │ │ │ │ ├── Area_generic_green_outbreak.prefab.meta │ │ │ │ ├── Area_generic_orange.prefab │ │ │ │ ├── Area_generic_orange.prefab.meta │ │ │ │ ├── Area_generic_orange_outbreak.prefab │ │ │ │ ├── Area_generic_orange_outbreak.prefab.meta │ │ │ │ ├── Area_generic_red.prefab │ │ │ │ ├── Area_generic_red.prefab.meta │ │ │ │ ├── Area_generic_red_outbreak.prefab │ │ │ │ └── Area_generic_red_outbreak.prefab.meta │ │ │ ├── Backlight_resources.meta │ │ │ ├── Backlight_resources │ │ │ │ ├── VFX_Heal_booster_get.prefab │ │ │ │ ├── VFX_Heal_booster_get.prefab.meta │ │ │ │ ├── backlight_coin.prefab │ │ │ │ ├── backlight_coin.prefab.meta │ │ │ │ ├── backlight_coin_drop.prefab │ │ │ │ ├── backlight_coin_drop.prefab.meta │ │ │ │ ├── backlight_diamond.prefab │ │ │ │ ├── backlight_diamond.prefab.meta │ │ │ │ ├── backlight_diamond_drop.prefab │ │ │ │ ├── backlight_diamond_drop.prefab.meta │ │ │ │ ├── backlight_health.prefab │ │ │ │ ├── backlight_health.prefab.meta │ │ │ │ ├── backlight_health_drop.prefab │ │ │ │ ├── backlight_health_drop.prefab.meta │ │ │ │ ├── backlight_heart.prefab │ │ │ │ ├── backlight_heart.prefab.meta │ │ │ │ ├── backlight_heart_drop.prefab │ │ │ │ ├── backlight_heart_drop.prefab.meta │ │ │ │ ├── backlight_speed.prefab │ │ │ │ └── backlight_speed.prefab.meta │ │ │ ├── Burst.meta │ │ │ ├── Burst │ │ │ │ ├── Burst_rainbow_mist.prefab │ │ │ │ ├── Burst_rainbow_mist.prefab.meta │ │ │ │ ├── Burst_rings.prefab │ │ │ │ ├── Burst_rings.prefab.meta │ │ │ │ ├── Burst_sharp.prefab │ │ │ │ ├── Burst_sharp.prefab.meta │ │ │ │ ├── Flash_circle.prefab │ │ │ │ ├── Flash_circle.prefab.meta │ │ │ │ ├── Flash_dubble_circle.prefab │ │ │ │ ├── Flash_dubble_circle.prefab.meta │ │ │ │ ├── Flash_generic.prefab │ │ │ │ ├── Flash_generic.prefab.meta │ │ │ │ ├── Flash_star.prefab │ │ │ │ ├── Flash_star.prefab.meta │ │ │ │ ├── Poof_coins.prefab │ │ │ │ ├── Poof_coins.prefab.meta │ │ │ │ ├── Poof_electric.prefab │ │ │ │ ├── Poof_electric.prefab.meta │ │ │ │ ├── Poof_generic.prefab │ │ │ │ ├── Poof_generic.prefab.meta │ │ │ │ ├── Poof_leaves.prefab │ │ │ │ ├── Poof_leaves.prefab.meta │ │ │ │ ├── Poof_water.prefab │ │ │ │ └── Poof_water.prefab.meta │ │ │ ├── Fire.meta │ │ │ ├── Fire │ │ │ │ ├── Fire_cartoon_electric.prefab │ │ │ │ ├── Fire_cartoon_electric.prefab.meta │ │ │ │ ├── Fire_cartoon_frost.prefab │ │ │ │ ├── Fire_cartoon_frost.prefab.meta │ │ │ │ ├── Fire_cartoon_gold.prefab │ │ │ │ ├── Fire_cartoon_gold.prefab.meta │ │ │ │ ├── Fire_cartoon_poison.prefab │ │ │ │ ├── Fire_cartoon_poison.prefab.meta │ │ │ │ ├── Fire_cartoon_simple.prefab │ │ │ │ ├── Fire_cartoon_simple.prefab.meta │ │ │ │ ├── Fire_explosion_air.prefab │ │ │ │ ├── Fire_explosion_air.prefab.meta │ │ │ │ ├── Fire_explosion_earth.prefab │ │ │ │ ├── Fire_explosion_earth.prefab.meta │ │ │ │ ├── Fire_fuming.prefab │ │ │ │ ├── Fire_fuming.prefab.meta │ │ │ │ ├── Fire_large.prefab │ │ │ │ ├── Fire_large.prefab.meta │ │ │ │ ├── Fire_medium.prefab │ │ │ │ ├── Fire_medium.prefab.meta │ │ │ │ ├── Fire_small.prefab │ │ │ │ ├── Fire_small.prefab.meta │ │ │ │ ├── Fire_trail.prefab │ │ │ │ ├── Fire_trail.prefab.meta │ │ │ │ ├── Flamethrower.prefab │ │ │ │ └── Flamethrower.prefab.meta │ │ │ ├── Fog.meta │ │ │ ├── Fog │ │ │ │ ├── Fog_electric.prefab │ │ │ │ ├── Fog_electric.prefab.meta │ │ │ │ ├── Fog_frost.prefab │ │ │ │ ├── Fog_frost.prefab.meta │ │ │ │ ├── Fog_herts.prefab │ │ │ │ ├── Fog_herts.prefab.meta │ │ │ │ ├── Fog_poison.prefab │ │ │ │ ├── Fog_poison.prefab.meta │ │ │ │ ├── Fog_speedFast.prefab │ │ │ │ ├── Fog_speedFast.prefab.meta │ │ │ │ ├── Fog_speedSlow.prefab │ │ │ │ └── Fog_speedSlow.prefab.meta │ │ │ ├── Loot.meta │ │ │ ├── Loot │ │ │ │ ├── Loot_drop.prefab │ │ │ │ ├── Loot_drop.prefab.meta │ │ │ │ ├── Loot_flicker.prefab │ │ │ │ ├── Loot_flicker.prefab.meta │ │ │ │ ├── Loot_iddle.prefab │ │ │ │ ├── Loot_iddle.prefab.meta │ │ │ │ ├── Loot_pick_up.prefab │ │ │ │ └── Loot_pick_up.prefab.meta │ │ │ ├── Orbs.meta │ │ │ ├── Orbs │ │ │ │ ├── Orbs_electric.prefab │ │ │ │ ├── Orbs_electric.prefab.meta │ │ │ │ ├── Orbs_fire.prefab │ │ │ │ ├── Orbs_fire.prefab.meta │ │ │ │ ├── Orbs_frost.prefab │ │ │ │ ├── Orbs_frost.prefab.meta │ │ │ │ ├── Orbs_gold.prefab │ │ │ │ ├── Orbs_gold.prefab.meta │ │ │ │ ├── Orbs_leaves.prefab │ │ │ │ └── Orbs_leaves.prefab.meta │ │ │ ├── Range_attack.meta │ │ │ ├── Range_attack │ │ │ │ ├── Hit_dark_magic.prefab │ │ │ │ ├── Hit_dark_magic.prefab.meta │ │ │ │ ├── Hit_electric.prefab │ │ │ │ ├── Hit_electric.prefab.meta │ │ │ │ ├── Hit_fire.prefab │ │ │ │ ├── Hit_fire.prefab.meta │ │ │ │ ├── Hit_frost.prefab │ │ │ │ ├── Hit_frost.prefab.meta │ │ │ │ ├── Hit_green_shuriken.prefab │ │ │ │ ├── Hit_green_shuriken.prefab.meta │ │ │ │ ├── Hit_heart.prefab │ │ │ │ ├── Hit_heart.prefab.meta │ │ │ │ ├── Hit_light.prefab │ │ │ │ ├── Hit_light.prefab.meta │ │ │ │ ├── Hit_magic.prefab │ │ │ │ ├── Hit_magic.prefab.meta │ │ │ │ ├── Hit_water.prefab │ │ │ │ ├── Hit_water.prefab.meta │ │ │ │ ├── Hit_wind.prefab │ │ │ │ ├── Hit_wind.prefab.meta │ │ │ │ ├── Projectiles_dark_magic.prefab │ │ │ │ ├── Projectiles_dark_magic.prefab.meta │ │ │ │ ├── Projectiles_electric.prefab │ │ │ │ ├── Projectiles_electric.prefab.meta │ │ │ │ ├── Projectiles_fire.prefab │ │ │ │ ├── Projectiles_fire.prefab.meta │ │ │ │ ├── Projectiles_frost.prefab │ │ │ │ ├── Projectiles_frost.prefab.meta │ │ │ │ ├── Projectiles_green_shuriken.prefab │ │ │ │ ├── Projectiles_green_shuriken.prefab.meta │ │ │ │ ├── Projectiles_heart.prefab │ │ │ │ ├── Projectiles_heart.prefab.meta │ │ │ │ ├── Projectiles_light.prefab │ │ │ │ ├── Projectiles_light.prefab.meta │ │ │ │ ├── Projectiles_magic.prefab │ │ │ │ ├── Projectiles_magic.prefab.meta │ │ │ │ ├── Projectiles_water.prefab │ │ │ │ ├── Projectiles_water.prefab.meta │ │ │ │ ├── Projectiles_wind.prefab │ │ │ │ └── Projectiles_wind.prefab.meta │ │ │ ├── Regeneration.meta │ │ │ ├── Regeneration │ │ │ │ ├── Regeneration_health.prefab │ │ │ │ ├── Regeneration_health.prefab.meta │ │ │ │ ├── Regeneration_health_area.prefab │ │ │ │ ├── Regeneration_health_area.prefab.meta │ │ │ │ ├── Regeneration_health_area_loop.prefab │ │ │ │ ├── Regeneration_health_area_loop.prefab.meta │ │ │ │ ├── Regeneration_health_loop.prefab │ │ │ │ ├── Regeneration_health_loop.prefab.meta │ │ │ │ ├── Regeneration_mana.prefab │ │ │ │ ├── Regeneration_mana.prefab.meta │ │ │ │ ├── Regeneration_mana_area.prefab │ │ │ │ ├── Regeneration_mana_area.prefab.meta │ │ │ │ ├── Regeneration_mana_area_loop.prefab │ │ │ │ ├── Regeneration_mana_area_loop.prefab.meta │ │ │ │ ├── Regeneration_mana_loop.prefab │ │ │ │ └── Regeneration_mana_loop.prefab.meta │ │ │ ├── Shields.meta │ │ │ ├── Shields │ │ │ │ ├── Shield_electric.prefab │ │ │ │ ├── Shield_electric.prefab.meta │ │ │ │ ├── Shield_fire.prefab │ │ │ │ ├── Shield_fire.prefab.meta │ │ │ │ ├── Shield_freezing.prefab │ │ │ │ ├── Shield_freezing.prefab.meta │ │ │ │ ├── Shield_gold.prefab │ │ │ │ ├── Shield_gold.prefab.meta │ │ │ │ ├── Shield_wind.prefab │ │ │ │ └── Shield_wind.prefab.meta │ │ │ ├── Slash.meta │ │ │ ├── Slash │ │ │ │ ├── Hit_fire.prefab │ │ │ │ ├── Hit_fire.prefab.meta │ │ │ │ ├── Hit_magic.prefab │ │ │ │ ├── Hit_magic.prefab.meta │ │ │ │ ├── Hit_snow.prefab │ │ │ │ ├── Hit_snow.prefab.meta │ │ │ │ ├── Hit_stone.prefab │ │ │ │ ├── Hit_stone.prefab.meta │ │ │ │ ├── Slash_fire_long.prefab │ │ │ │ ├── Slash_fire_long.prefab.meta │ │ │ │ ├── Slash_fire_once.prefab │ │ │ │ ├── Slash_fire_once.prefab.meta │ │ │ │ ├── Slash_magic_long.prefab │ │ │ │ ├── Slash_magic_long.prefab.meta │ │ │ │ ├── Slash_magic_once.prefab │ │ │ │ ├── Slash_magic_once.prefab.meta │ │ │ │ ├── Slash_snow_long.prefab │ │ │ │ ├── Slash_snow_long.prefab.meta │ │ │ │ ├── Slash_snow_once.prefab │ │ │ │ ├── Slash_snow_once.prefab.meta │ │ │ │ ├── Slash_stone_long.prefab │ │ │ │ ├── Slash_stone_long.prefab.meta │ │ │ │ ├── Slash_stone_once.prefab │ │ │ │ └── Slash_stone_once.prefab.meta │ │ │ ├── States.meta │ │ │ ├── States │ │ │ │ ├── Aura_acceleration.prefab │ │ │ │ ├── Aura_acceleration.prefab.meta │ │ │ │ ├── Aura_slowdown.prefab │ │ │ │ ├── Aura_slowdown.prefab.meta │ │ │ │ ├── Character_status_sleep.prefab │ │ │ │ ├── Character_status_sleep.prefab.meta │ │ │ │ ├── Level_up.prefab │ │ │ │ ├── Level_up.prefab.meta │ │ │ │ ├── Misses.prefab │ │ │ │ ├── Misses.prefab.meta │ │ │ │ ├── Stun.prefab │ │ │ │ ├── Stun.prefab.meta │ │ │ │ ├── Stun_loop.prefab │ │ │ │ ├── Stun_loop.prefab.meta │ │ │ │ ├── Wet.prefab │ │ │ │ └── Wet.prefab.meta │ │ │ ├── Top_down_attack.meta │ │ │ └── Top_down_attack │ │ │ │ ├── explosion_controller 1.prefab │ │ │ │ ├── explosion_controller 1.prefab.meta │ │ │ │ ├── explosion_controller.prefab │ │ │ │ ├── explosion_controller.prefab.meta │ │ │ │ ├── top_down_beam_circle_green.prefab │ │ │ │ ├── top_down_beam_circle_green.prefab.meta │ │ │ │ ├── top_down_beam_dot_purple.prefab │ │ │ │ ├── top_down_beam_dot_purple.prefab.meta │ │ │ │ ├── top_down_beam_line_blue.prefab │ │ │ │ ├── top_down_beam_line_blue.prefab.meta │ │ │ │ ├── top_down_bomb_rainbow.prefab │ │ │ │ ├── top_down_bomb_rainbow.prefab.meta │ │ │ │ ├── top_down_ice_circle.prefab │ │ │ │ ├── top_down_ice_circle.prefab.meta │ │ │ │ ├── top_down_ice_dot.prefab │ │ │ │ ├── top_down_ice_dot.prefab.meta │ │ │ │ ├── top_down_ice_dot_hit.prefab │ │ │ │ ├── top_down_ice_dot_hit.prefab.meta │ │ │ │ ├── top_down_ice_line.prefab │ │ │ │ ├── top_down_ice_line.prefab.meta │ │ │ │ ├── top_down_lightning_circle_blue.prefab │ │ │ │ ├── top_down_lightning_circle_blue.prefab.meta │ │ │ │ ├── top_down_lightning_dot_orange.prefab │ │ │ │ ├── top_down_lightning_dot_orange.prefab.meta │ │ │ │ ├── top_down_lightning_line_green.prefab │ │ │ │ ├── top_down_lightning_line_green.prefab.meta │ │ │ │ ├── top_down_rocket_circle_red.prefab │ │ │ │ ├── top_down_rocket_circle_red.prefab.meta │ │ │ │ ├── top_down_rocket_dot_pink.prefab │ │ │ │ ├── top_down_rocket_dot_pink.prefab.meta │ │ │ │ ├── top_down_rocket_line_pink.prefab │ │ │ │ ├── top_down_rocket_line_pink.prefab.meta │ │ │ │ ├── top_down_starfall_circle_rainbow.prefab │ │ │ │ ├── top_down_starfall_circle_rainbow.prefab.meta │ │ │ │ ├── top_down_starfall_dot_purple.prefab │ │ │ │ ├── top_down_starfall_dot_purple.prefab.meta │ │ │ │ ├── top_down_starfall_line_blue.prefab │ │ │ │ ├── top_down_starfall_line_blue.prefab.meta │ │ │ │ ├── top_down_stone_circle.prefab │ │ │ │ ├── top_down_stone_circle.prefab.meta │ │ │ │ ├── top_down_stone_dot.prefab │ │ │ │ ├── top_down_stone_dot.prefab.meta │ │ │ │ ├── top_down_stone_line.prefab │ │ │ │ └── top_down_stone_line.prefab.meta │ │ ├── Readme.txt │ │ ├── Readme.txt.meta │ │ ├── Scripts.meta │ │ ├── Scripts │ │ │ ├── UVscroll.cs │ │ │ └── UVscroll.cs.meta │ │ ├── Textures.meta │ │ ├── Textures │ │ │ ├── 1 1.png │ │ │ ├── 1 1.png.meta │ │ │ ├── 1.png │ │ │ ├── 1.png.meta │ │ │ ├── Flare06.png │ │ │ ├── Flare06.png.meta │ │ │ ├── Flare07.png │ │ │ ├── Flare07.png.meta │ │ │ ├── Snowflake01.png │ │ │ ├── Snowflake01.png.meta │ │ │ ├── Star07.png │ │ │ ├── Star07.png.meta │ │ │ ├── Z.png │ │ │ ├── Z.png.meta │ │ │ ├── arrow01.png │ │ │ ├── arrow01.png.meta │ │ │ ├── arrow03.png │ │ │ ├── arrow03.png.meta │ │ │ ├── arrow04.png │ │ │ ├── arrow04.png.meta │ │ │ ├── bubble_hard01.png │ │ │ ├── bubble_hard01.png.meta │ │ │ ├── bubble_soft01.png │ │ │ ├── bubble_soft01.png.meta │ │ │ ├── buble01.png │ │ │ ├── buble01.png.meta │ │ │ ├── circle_boke01.png │ │ │ ├── circle_boke01.png.meta │ │ │ ├── circle_boke02.png │ │ │ ├── circle_boke02.png.meta │ │ │ ├── circle_hard01.png │ │ │ ├── circle_hard01.png.meta │ │ │ ├── circle_soft01.png │ │ │ ├── circle_soft01.png.meta │ │ │ ├── circle_soft02.png │ │ │ ├── circle_soft02.png.meta │ │ │ ├── circle_soft03.png │ │ │ ├── circle_soft03.png.meta │ │ │ ├── cloud01.png │ │ │ ├── cloud01.png.meta │ │ │ ├── cloud02.png │ │ │ ├── cloud02.png.meta │ │ │ ├── cloud03.png │ │ │ ├── cloud03.png.meta │ │ │ ├── coin01.png │ │ │ ├── coin01.png.meta │ │ │ ├── diamond01.png │ │ │ ├── diamond01.png.meta │ │ │ ├── drop_stretched01.png │ │ │ ├── drop_stretched01.png.meta │ │ │ ├── drop_stretched02.png │ │ │ ├── drop_stretched02.png.meta │ │ │ ├── drop_stretched03.png │ │ │ ├── drop_stretched03.png.meta │ │ │ ├── electric01.png │ │ │ ├── electric01.png.meta │ │ │ ├── electric02.png │ │ │ ├── electric02.png.meta │ │ │ ├── electric03.png │ │ │ ├── electric03.png.meta │ │ │ ├── electric_vertical01.png │ │ │ ├── electric_vertical01.png.meta │ │ │ ├── electric_vertical02.png │ │ │ ├── electric_vertical02.png.meta │ │ │ ├── fire01.png │ │ │ ├── fire01.png.meta │ │ │ ├── fire02.png │ │ │ ├── fire02.png.meta │ │ │ ├── fire07.png │ │ │ ├── fire07.png.meta │ │ │ ├── flare01.png │ │ │ ├── flare01.png.meta │ │ │ ├── flare02.png │ │ │ ├── flare02.png.meta │ │ │ ├── flare03.png │ │ │ ├── flare03.png.meta │ │ │ ├── flare04.png │ │ │ ├── flare04.png.meta │ │ │ ├── flare05.png │ │ │ ├── flare05.png.meta │ │ │ ├── gradient01.png │ │ │ ├── gradient01.png.meta │ │ │ ├── heart01.png │ │ │ ├── heart01.png.meta │ │ │ ├── heart02.png │ │ │ ├── heart02.png.meta │ │ │ ├── leaf01.png │ │ │ ├── leaf01.png.meta │ │ │ ├── line01.png │ │ │ ├── line01.png.meta │ │ │ ├── line02.png │ │ │ ├── line02.png.meta │ │ │ ├── line03.png │ │ │ ├── line03.png.meta │ │ │ ├── line04.png │ │ │ ├── line04.png.meta │ │ │ ├── line05.png │ │ │ ├── line05.png.meta │ │ │ ├── plus01.png │ │ │ ├── plus01.png.meta │ │ │ ├── plus02.png │ │ │ ├── plus02.png.meta │ │ │ ├── rays01.png │ │ │ ├── rays01.png.meta │ │ │ ├── rays02.png │ │ │ ├── rays02.png.meta │ │ │ ├── ring01.png │ │ │ ├── ring01.png.meta │ │ │ ├── ring02.png │ │ │ ├── ring02.png.meta │ │ │ ├── ring03.png │ │ │ ├── ring03.png.meta │ │ │ ├── ring04.png │ │ │ ├── ring04.png.meta │ │ │ ├── ring05.png │ │ │ ├── ring05.png.meta │ │ │ ├── ring06.png │ │ │ ├── ring06.png.meta │ │ │ ├── ring07.png │ │ │ ├── ring07.png.meta │ │ │ ├── ring08.png │ │ │ ├── ring08.png.meta │ │ │ ├── ring09.png │ │ │ ├── ring09.png.meta │ │ │ ├── rocket_green.png │ │ │ ├── rocket_green.png.meta │ │ │ ├── rocket_purple.png │ │ │ ├── rocket_purple.png.meta │ │ │ ├── rocket_red.png │ │ │ ├── rocket_red.png.meta │ │ │ ├── round_target01.png │ │ │ ├── round_target01.png.meta │ │ │ ├── round_target02.png │ │ │ ├── round_target02.png.meta │ │ │ ├── round_target03.png │ │ │ ├── round_target03.png.meta │ │ │ ├── round_target04.png │ │ │ ├── round_target04.png.meta │ │ │ ├── round_target05.png │ │ │ ├── round_target05.png.meta │ │ │ ├── sickle01.png │ │ │ ├── sickle01.png.meta │ │ │ ├── sickle02.png │ │ │ ├── sickle02.png.meta │ │ │ ├── sickle03.png │ │ │ ├── sickle03.png.meta │ │ │ ├── sickle04.png │ │ │ ├── sickle04.png.meta │ │ │ ├── sickle05.png │ │ │ ├── sickle05.png.meta │ │ │ ├── sickle06.png │ │ │ ├── sickle06.png.meta │ │ │ ├── smoke_vertical01.png │ │ │ ├── smoke_vertical01.png.meta │ │ │ ├── spikes01.png │ │ │ ├── spikes01.png.meta │ │ │ ├── spikes02.png │ │ │ ├── spikes02.png.meta │ │ │ ├── spikes03.png │ │ │ ├── spikes03.png.meta │ │ │ ├── spikes04.png │ │ │ ├── spikes04.png.meta │ │ │ ├── spikes05.png │ │ │ ├── spikes05.png.meta │ │ │ ├── spikes06.png │ │ │ ├── spikes06.png.meta │ │ │ ├── star01.png │ │ │ ├── star01.png.meta │ │ │ ├── star02.png │ │ │ ├── star02.png.meta │ │ │ ├── stone03.png │ │ │ ├── stone03.png.meta │ │ │ ├── stone04.png │ │ │ ├── stone04.png.meta │ │ │ ├── t_trail01.png │ │ │ ├── t_trail01.png.meta │ │ │ ├── t_trail02.png │ │ │ ├── t_trail02.png.meta │ │ │ ├── t_trail03.png │ │ │ ├── t_trail03.png.meta │ │ │ ├── t_trail04.png │ │ │ ├── t_trail04.png.meta │ │ │ ├── t_trail05.png │ │ │ ├── t_trail05.png.meta │ │ │ ├── t_trail06.png │ │ │ ├── t_trail06.png.meta │ │ │ ├── t_trail07.psd │ │ │ ├── t_trail07.psd.meta │ │ │ ├── t_trail08.png │ │ │ ├── t_trail08.png.meta │ │ │ ├── t_trail09.png │ │ │ ├── t_trail09.png.meta │ │ │ ├── t_trail10.png │ │ │ ├── t_trail10.png.meta │ │ │ ├── t_trail11.png │ │ │ ├── t_trail11.png.meta │ │ │ ├── t_trail12.png │ │ │ ├── t_trail12.png.meta │ │ │ ├── wave01.png │ │ │ └── wave01.png.meta │ │ ├── Upgrade for URP.meta │ │ └── Upgrade for URP │ │ │ ├── Upgrade for URP.unitypackage │ │ │ └── Upgrade for URP.unitypackage.meta │ │ ├── Lana Studio.meta │ │ └── Lana Studio │ │ ├── Hyper Casual FX.meta │ │ └── Hyper Casual FX │ │ ├── Crystal 1.fbx │ │ ├── Crystal 1.fbx.meta │ │ ├── Crystal.fbx │ │ ├── Crystal.fbx.meta │ │ ├── Flash_star_ellow_green.controller │ │ ├── Flash_star_ellow_green.controller.meta │ │ ├── Materials.meta │ │ ├── Materials │ │ ├── Circles_AB.mat │ │ ├── Circles_AB.mat.meta │ │ ├── Circles_Additive 1.mat │ │ ├── Circles_Additive 1.mat.meta │ │ ├── Circles_Additive.mat │ │ ├── Circles_Additive.mat.meta │ │ ├── Drop_AB.mat │ │ ├── Drop_AB.mat.meta │ │ ├── Egg.mat │ │ ├── Egg.mat.meta │ │ ├── Square.mat │ │ ├── Square.mat.meta │ │ ├── Star.mat │ │ └── Star.mat.meta │ │ ├── Models.meta │ │ ├── Models │ │ ├── Confetti.fbx │ │ └── Confetti.fbx.meta │ │ ├── Prefabs.meta │ │ ├── Prefabs │ │ ├── Confetti.meta │ │ ├── Confetti │ │ │ ├── Confetti_blast_multicolor.prefab │ │ │ └── Confetti_blast_multicolor.prefab.meta │ │ ├── Flash.meta │ │ └── Flash │ │ │ ├── Flash_ellow.prefab │ │ │ ├── Flash_ellow.prefab.meta │ │ │ ├── Flash_star_ellow_green.prefab │ │ │ └── Flash_star_ellow_green.prefab.meta │ │ ├── SM_Exp_crystal.fbx │ │ ├── SM_Exp_crystal.fbx.meta │ │ ├── Scale animation.anim │ │ ├── Scale animation.anim.meta │ │ ├── Textures.meta │ │ ├── Textures │ │ ├── Blast_spiky.png │ │ ├── Blast_spiky.png.meta │ │ ├── Circle01.png │ │ ├── Circle01.png.meta │ │ ├── Circle02.png │ │ ├── Circle02.png.meta │ │ ├── Circle03.png │ │ ├── Circle03.png.meta │ │ ├── Circle04.png │ │ ├── Circle04.png.meta │ │ ├── Circle05.png │ │ ├── Circle05.png.meta │ │ ├── Circle06.png │ │ ├── Circle06.png.meta │ │ ├── Flare02.png │ │ ├── Flare02.png.meta │ │ ├── Flare03.png │ │ ├── Flare03.png.meta │ │ ├── Gradient01.png │ │ ├── Gradient01.png.meta │ │ ├── Plus01.png │ │ ├── Plus01.png.meta │ │ ├── Ray01.png │ │ ├── Ray01.png.meta │ │ ├── Shockwave_spiky.png │ │ ├── Shockwave_spiky.png.meta │ │ ├── Square02.png │ │ ├── Square02.png.meta │ │ ├── Star01.png │ │ ├── Star01.png.meta │ │ ├── Star02.png │ │ ├── Star02.png.meta │ │ ├── confetti_large.png │ │ ├── confetti_large.png.meta │ │ ├── drop.png │ │ ├── drop.png.meta │ │ ├── drop_blue.png │ │ ├── drop_blue.png.meta │ │ ├── drop_green.png │ │ ├── drop_green.png.meta │ │ ├── drop_orange.png │ │ ├── drop_orange.png.meta │ │ ├── drop_pink.png │ │ ├── drop_pink.png.meta │ │ ├── spark01.png │ │ └── spark01.png.meta │ │ ├── star.fbx │ │ └── star.fbx.meta ├── Scenes.meta ├── Scenes │ ├── Game.unity │ ├── Game.unity.meta │ ├── Initial.unity │ ├── Initial.unity.meta │ ├── Menu.unity │ └── Menu.unity.meta ├── Shaders.meta ├── Shaders │ ├── Custom_UIImageShader.mat │ ├── Custom_UIImageShader.mat.meta │ ├── Fill Shader World.shadergraph │ ├── Fill Shader World.shadergraph.meta │ ├── Toony Colors Pro.meta │ ├── Toony Colors Pro │ │ ├── !ToonyColorsPro Readme.txt │ │ ├── !ToonyColorsPro Readme.txt.meta │ │ ├── Demo TCP2.meta │ │ ├── Demo TCP2 │ │ │ ├── Cat Demo Assets.meta │ │ │ ├── Cat Demo Assets │ │ │ │ ├── Materials.meta │ │ │ │ ├── Materials │ │ │ │ │ ├── Cat.meta │ │ │ │ │ ├── Cat │ │ │ │ │ │ ├── TCP2_Demo_Cat style1 hat.mat │ │ │ │ │ │ ├── TCP2_Demo_Cat style1 hat.mat.meta │ │ │ │ │ │ ├── TCP2_Demo_Cat style1.mat │ │ │ │ │ │ ├── TCP2_Demo_Cat style1.mat.meta │ │ │ │ │ │ ├── TCP2_Demo_Cat style2 hat.mat │ │ │ │ │ │ ├── TCP2_Demo_Cat style2 hat.mat.meta │ │ │ │ │ │ ├── TCP2_Demo_Cat style2.mat │ │ │ │ │ │ ├── TCP2_Demo_Cat style2.mat.meta │ │ │ │ │ │ ├── TCP2_Demo_Cat style3 hat.mat │ │ │ │ │ │ ├── TCP2_Demo_Cat style3 hat.mat.meta │ │ │ │ │ │ ├── TCP2_Demo_Cat style3.mat │ │ │ │ │ │ ├── TCP2_Demo_Cat style3.mat.meta │ │ │ │ │ │ ├── TCP2_Demo_Cat style4.mat │ │ │ │ │ │ ├── TCP2_Demo_Cat style4.mat.meta │ │ │ │ │ │ ├── TCP2_Demo_Cat style5.mat │ │ │ │ │ │ ├── TCP2_Demo_Cat style5.mat.meta │ │ │ │ │ │ ├── TCP2_Demo_Cat style6 hat.mat │ │ │ │ │ │ ├── TCP2_Demo_Cat style6 hat.mat.meta │ │ │ │ │ │ ├── TCP2_Demo_Cat style6.mat │ │ │ │ │ │ ├── TCP2_Demo_Cat style6.mat.meta │ │ │ │ │ │ ├── TCP2_Demo_CatFlat style1 hat.mat │ │ │ │ │ │ ├── TCP2_Demo_CatFlat style1 hat.mat.meta │ │ │ │ │ │ ├── TCP2_Demo_CatFlat style1.mat │ │ │ │ │ │ ├── TCP2_Demo_CatFlat style1.mat.meta │ │ │ │ │ │ ├── TCP2_Demo_CatFlat style2 hat.mat │ │ │ │ │ │ ├── TCP2_Demo_CatFlat style2 hat.mat.meta │ │ │ │ │ │ ├── TCP2_Demo_CatFlat style2.mat │ │ │ │ │ │ ├── TCP2_Demo_CatFlat style2.mat.meta │ │ │ │ │ │ ├── TCP2_Demo_CatFlat style3 hat.mat │ │ │ │ │ │ ├── TCP2_Demo_CatFlat style3 hat.mat.meta │ │ │ │ │ │ ├── TCP2_Demo_CatFlat style3.mat │ │ │ │ │ │ ├── TCP2_Demo_CatFlat style3.mat.meta │ │ │ │ │ │ ├── TCP2_Demo_CatFlat style4.mat │ │ │ │ │ │ ├── TCP2_Demo_CatFlat style4.mat.meta │ │ │ │ │ │ ├── TCP2_Demo_CatFlat style5.mat │ │ │ │ │ │ ├── TCP2_Demo_CatFlat style5.mat.meta │ │ │ │ │ │ ├── TCP2_Demo_CatFlat style6 hat.mat │ │ │ │ │ │ ├── TCP2_Demo_CatFlat style6 hat.mat.meta │ │ │ │ │ │ ├── TCP2_Demo_CatFlat style6.mat │ │ │ │ │ │ └── TCP2_Demo_CatFlat style6.mat.meta │ │ │ │ │ ├── TCP2_Demo_BrickWall.mat │ │ │ │ │ ├── TCP2_Demo_BrickWall.mat.meta │ │ │ │ │ ├── TCP2_Demo_BrickWall_Flat.mat │ │ │ │ │ ├── TCP2_Demo_BrickWall_Flat.mat.meta │ │ │ │ │ ├── TCP2_Demo_Car.mat │ │ │ │ │ ├── TCP2_Demo_Car.mat.meta │ │ │ │ │ ├── TCP2_Demo_Car_Flat.mat │ │ │ │ │ ├── TCP2_Demo_Car_Flat.mat.meta │ │ │ │ │ ├── TCP2_Demo_Graffiti1.mat │ │ │ │ │ ├── TCP2_Demo_Graffiti1.mat.meta │ │ │ │ │ ├── TCP2_Demo_Graffiti2.mat │ │ │ │ │ ├── TCP2_Demo_Graffiti2.mat.meta │ │ │ │ │ ├── TCP2_Demo_Graffiti3.mat │ │ │ │ │ ├── TCP2_Demo_Graffiti3.mat.meta │ │ │ │ │ ├── TCP2_Demo_Ground.mat │ │ │ │ │ ├── TCP2_Demo_Ground.mat.meta │ │ │ │ │ ├── TCP2_Demo_StreetLightDay.mat │ │ │ │ │ ├── TCP2_Demo_StreetLightDay.mat.meta │ │ │ │ │ ├── TCP2_Demo_StreetLightDay_Flat.mat │ │ │ │ │ ├── TCP2_Demo_StreetLightDay_Flat.mat.meta │ │ │ │ │ ├── TCP2_Demo_StreetLightNight.mat │ │ │ │ │ ├── TCP2_Demo_StreetLightNight.mat.meta │ │ │ │ │ ├── TCP2_Demo_StreetLightNight_Flat.mat │ │ │ │ │ ├── TCP2_Demo_StreetLightNight_Flat.mat.meta │ │ │ │ │ ├── TCP2_Demo_VertexColors.mat │ │ │ │ │ ├── TCP2_Demo_VertexColors.mat.meta │ │ │ │ │ ├── TCP2_Demo_VertexColors_Specular.mat │ │ │ │ │ ├── TCP2_Demo_VertexColors_Specular.mat.meta │ │ │ │ │ ├── TCP2_Demo_VertexColors_Transparent.mat │ │ │ │ │ ├── TCP2_Demo_VertexColors_Transparent.mat.meta │ │ │ │ │ ├── TCP2_Demo_Water.mat │ │ │ │ │ ├── TCP2_Demo_Water.mat.meta │ │ │ │ │ ├── TCP2_Demo_WheelyBin.mat │ │ │ │ │ ├── TCP2_Demo_WheelyBin.mat.meta │ │ │ │ │ ├── UnityChan.meta │ │ │ │ │ └── UnityChan │ │ │ │ │ │ ├── TCP2_Demo_UnityChan style1 body.mat │ │ │ │ │ │ ├── TCP2_Demo_UnityChan style1 body.mat.meta │ │ │ │ │ │ ├── TCP2_Demo_UnityChan style1 flat body.mat │ │ │ │ │ │ ├── TCP2_Demo_UnityChan style1 flat body.mat.meta │ │ │ │ │ │ ├── TCP2_Demo_UnityChan style1 flat skin.mat │ │ │ │ │ │ ├── TCP2_Demo_UnityChan style1 flat skin.mat.meta │ │ │ │ │ │ ├── TCP2_Demo_UnityChan style1 flat.mat │ │ │ │ │ │ ├── TCP2_Demo_UnityChan style1 flat.mat.meta │ │ │ │ │ │ ├── TCP2_Demo_UnityChan style1 skin.mat │ │ │ │ │ │ ├── TCP2_Demo_UnityChan style1 skin.mat.meta │ │ │ │ │ │ ├── TCP2_Demo_UnityChan style1.mat │ │ │ │ │ │ ├── TCP2_Demo_UnityChan style1.mat.meta │ │ │ │ │ │ ├── TCP2_Demo_UnityChan style2 body.mat │ │ │ │ │ │ ├── TCP2_Demo_UnityChan style2 body.mat.meta │ │ │ │ │ │ ├── TCP2_Demo_UnityChan style2 flat body.mat │ │ │ │ │ │ ├── TCP2_Demo_UnityChan style2 flat body.mat.meta │ │ │ │ │ │ ├── TCP2_Demo_UnityChan style2 flat skin.mat │ │ │ │ │ │ ├── TCP2_Demo_UnityChan style2 flat skin.mat.meta │ │ │ │ │ │ ├── TCP2_Demo_UnityChan style2 flat.mat │ │ │ │ │ │ ├── TCP2_Demo_UnityChan style2 flat.mat.meta │ │ │ │ │ │ ├── TCP2_Demo_UnityChan style2 skin.mat │ │ │ │ │ │ ├── TCP2_Demo_UnityChan style2 skin.mat.meta │ │ │ │ │ │ ├── TCP2_Demo_UnityChan style2.mat │ │ │ │ │ │ ├── TCP2_Demo_UnityChan style2.mat.meta │ │ │ │ │ │ ├── TCP2_Demo_UnityChan style3 body.mat │ │ │ │ │ │ ├── TCP2_Demo_UnityChan style3 body.mat.meta │ │ │ │ │ │ ├── TCP2_Demo_UnityChan style3 flat body.mat │ │ │ │ │ │ ├── TCP2_Demo_UnityChan style3 flat body.mat.meta │ │ │ │ │ │ ├── TCP2_Demo_UnityChan style3 flat skin.mat │ │ │ │ │ │ ├── TCP2_Demo_UnityChan style3 flat skin.mat.meta │ │ │ │ │ │ ├── TCP2_Demo_UnityChan style3 flat.mat │ │ │ │ │ │ ├── TCP2_Demo_UnityChan style3 flat.mat.meta │ │ │ │ │ │ ├── TCP2_Demo_UnityChan style3 skin.mat │ │ │ │ │ │ ├── TCP2_Demo_UnityChan style3 skin.mat.meta │ │ │ │ │ │ ├── TCP2_Demo_UnityChan style3.mat │ │ │ │ │ │ ├── TCP2_Demo_UnityChan style3.mat.meta │ │ │ │ │ │ ├── TCP2_Demo_UnityChan style4 body.mat │ │ │ │ │ │ ├── TCP2_Demo_UnityChan style4 body.mat.meta │ │ │ │ │ │ ├── TCP2_Demo_UnityChan style4 flat body.mat │ │ │ │ │ │ ├── TCP2_Demo_UnityChan style4 flat body.mat.meta │ │ │ │ │ │ ├── TCP2_Demo_UnityChan style4 flat skin.mat │ │ │ │ │ │ ├── TCP2_Demo_UnityChan style4 flat skin.mat.meta │ │ │ │ │ │ ├── TCP2_Demo_UnityChan style4 flat.mat │ │ │ │ │ │ ├── TCP2_Demo_UnityChan style4 flat.mat.meta │ │ │ │ │ │ ├── TCP2_Demo_UnityChan style4 skin.mat │ │ │ │ │ │ ├── TCP2_Demo_UnityChan style4 skin.mat.meta │ │ │ │ │ │ ├── TCP2_Demo_UnityChan style4.mat │ │ │ │ │ │ ├── TCP2_Demo_UnityChan style4.mat.meta │ │ │ │ │ │ ├── TCP2_Demo_UnityChan style5 body.mat │ │ │ │ │ │ ├── TCP2_Demo_UnityChan style5 body.mat.meta │ │ │ │ │ │ ├── TCP2_Demo_UnityChan style5 flat body.mat │ │ │ │ │ │ ├── TCP2_Demo_UnityChan style5 flat body.mat.meta │ │ │ │ │ │ ├── TCP2_Demo_UnityChan style5 flat skin.mat │ │ │ │ │ │ ├── TCP2_Demo_UnityChan style5 flat skin.mat.meta │ │ │ │ │ │ ├── TCP2_Demo_UnityChan style5 flat.mat │ │ │ │ │ │ ├── TCP2_Demo_UnityChan style5 flat.mat.meta │ │ │ │ │ │ ├── TCP2_Demo_UnityChan style5 skin.mat │ │ │ │ │ │ ├── TCP2_Demo_UnityChan style5 skin.mat.meta │ │ │ │ │ │ ├── TCP2_Demo_UnityChan style5.mat │ │ │ │ │ │ ├── TCP2_Demo_UnityChan style5.mat.meta │ │ │ │ │ │ ├── TCP2_Demo_UnityChan style6 body.mat │ │ │ │ │ │ ├── TCP2_Demo_UnityChan style6 body.mat.meta │ │ │ │ │ │ ├── TCP2_Demo_UnityChan style6 flat body.mat │ │ │ │ │ │ ├── TCP2_Demo_UnityChan style6 flat body.mat.meta │ │ │ │ │ │ ├── TCP2_Demo_UnityChan style6 flat skin.mat │ │ │ │ │ │ ├── TCP2_Demo_UnityChan style6 flat skin.mat.meta │ │ │ │ │ │ ├── TCP2_Demo_UnityChan style6 flat.mat │ │ │ │ │ │ ├── TCP2_Demo_UnityChan style6 flat.mat.meta │ │ │ │ │ │ ├── TCP2_Demo_UnityChan style6 skin.mat │ │ │ │ │ │ ├── TCP2_Demo_UnityChan style6 skin.mat.meta │ │ │ │ │ │ ├── TCP2_Demo_UnityChan style6.mat │ │ │ │ │ │ └── TCP2_Demo_UnityChan style6.mat.meta │ │ │ │ ├── Models.meta │ │ │ │ ├── Models │ │ │ │ │ ├── Cat_Normals_Edit.fbx │ │ │ │ │ ├── Cat_Normals_Edit.fbx.meta │ │ │ │ │ ├── TCP2_Demo_BrickWall.fbx │ │ │ │ │ ├── TCP2_Demo_BrickWall.fbx.meta │ │ │ │ │ ├── TCP2_Demo_BrickWall_Flat.fbx │ │ │ │ │ ├── TCP2_Demo_BrickWall_Flat.fbx.meta │ │ │ │ │ ├── TCP2_Demo_Car01.fbx │ │ │ │ │ ├── TCP2_Demo_Car01.fbx.meta │ │ │ │ │ ├── TCP2_Demo_Cat.fbx │ │ │ │ │ ├── TCP2_Demo_Cat.fbx.meta │ │ │ │ │ ├── TCP2_Demo_Cat_Idle2.fbx │ │ │ │ │ ├── TCP2_Demo_Cat_Idle2.fbx.meta │ │ │ │ │ ├── TCP2_Demo_Cat_Idle4.fbx │ │ │ │ │ ├── TCP2_Demo_Cat_Idle4.fbx.meta │ │ │ │ │ ├── TCP2_Demo_Island.fbx │ │ │ │ │ ├── TCP2_Demo_Island.fbx.meta │ │ │ │ │ ├── TCP2_Demo_RoadWorksArrow.fbx │ │ │ │ │ ├── TCP2_Demo_RoadWorksArrow.fbx.meta │ │ │ │ │ ├── TCP2_Demo_RoadWorksArrow_Flat.fbx │ │ │ │ │ ├── TCP2_Demo_RoadWorksArrow_Flat.fbx.meta │ │ │ │ │ ├── TCP2_Demo_RoadWorksBarrier02.fbx │ │ │ │ │ ├── TCP2_Demo_RoadWorksBarrier02.fbx.meta │ │ │ │ │ ├── TCP2_Demo_RoadWorksBarrier02_Flat.fbx │ │ │ │ │ ├── TCP2_Demo_RoadWorksBarrier02_Flat.fbx.meta │ │ │ │ │ ├── TCP2_Demo_RoadWorksCone.fbx │ │ │ │ │ ├── TCP2_Demo_RoadWorksCone.fbx.meta │ │ │ │ │ ├── TCP2_Demo_RoadWorksCone_Flat.fbx │ │ │ │ │ ├── TCP2_Demo_RoadWorksCone_Flat.fbx.meta │ │ │ │ │ ├── TCP2_Demo_StreetLight.fbx │ │ │ │ │ ├── TCP2_Demo_StreetLight.fbx.meta │ │ │ │ │ ├── TCP2_Demo_StreetLightCone.fbx │ │ │ │ │ ├── TCP2_Demo_StreetLightCone.fbx.meta │ │ │ │ │ ├── TCP2_Demo_StreetLight_Flat.fbx │ │ │ │ │ ├── TCP2_Demo_StreetLight_Flat.fbx.meta │ │ │ │ │ ├── TCP2_Demo_UnityChan.fbx │ │ │ │ │ ├── TCP2_Demo_UnityChan.fbx.meta │ │ │ │ │ ├── TCP2_Demo_UnityChan_Animations.fbx │ │ │ │ │ ├── TCP2_Demo_UnityChan_Animations.fbx.meta │ │ │ │ │ ├── TCP2_Demo_Water.fbx │ │ │ │ │ ├── TCP2_Demo_Water.fbx.meta │ │ │ │ │ ├── TCP2_Demo_WheelyBinBlue.fbx │ │ │ │ │ ├── TCP2_Demo_WheelyBinBlue.fbx.meta │ │ │ │ │ ├── TCP2_Demo_WheelyBinBlue_Flat.fbx │ │ │ │ │ ├── TCP2_Demo_WheelyBinBlue_Flat.fbx.meta │ │ │ │ │ ├── UnityChan_Normals_Edit.fbx │ │ │ │ │ └── UnityChan_Normals_Edit.fbx.meta │ │ │ │ ├── Scripts.meta │ │ │ │ ├── Scripts │ │ │ │ │ ├── TCP2_Demo_Camera.cs │ │ │ │ │ ├── TCP2_Demo_Camera.cs.meta │ │ │ │ │ ├── TCP2_Demo_Cat.cs │ │ │ │ │ ├── TCP2_Demo_Cat.cs.meta │ │ │ │ │ ├── TCP2_Demo_GammaLinear.cs │ │ │ │ │ └── TCP2_Demo_GammaLinear.cs.meta │ │ │ │ ├── Shaders.meta │ │ │ │ ├── Shaders │ │ │ │ │ ├── Cat Demo.meta │ │ │ │ │ └── Cat Demo │ │ │ │ │ │ ├── Cat.meta │ │ │ │ │ │ ├── Cat │ │ │ │ │ │ ├── Style 1.shader │ │ │ │ │ │ ├── Style 1.shader.meta │ │ │ │ │ │ ├── Style 2.shader │ │ │ │ │ │ ├── Style 2.shader.meta │ │ │ │ │ │ ├── Style 3.shader │ │ │ │ │ │ ├── Style 3.shader.meta │ │ │ │ │ │ ├── Style 4.shader │ │ │ │ │ │ ├── Style 4.shader.meta │ │ │ │ │ │ ├── Style 5.shader │ │ │ │ │ │ ├── Style 5.shader.meta │ │ │ │ │ │ ├── Style 6.shader │ │ │ │ │ │ └── Style 6.shader.meta │ │ │ │ │ │ ├── Decal.shader │ │ │ │ │ │ ├── Decal.shader.meta │ │ │ │ │ │ ├── Ground.shader │ │ │ │ │ │ ├── Ground.shader.meta │ │ │ │ │ │ ├── UnityChan.meta │ │ │ │ │ │ ├── UnityChan │ │ │ │ │ │ ├── Style 1 Skin.shader │ │ │ │ │ │ ├── Style 1 Skin.shader.meta │ │ │ │ │ │ ├── Style 1.shader │ │ │ │ │ │ ├── Style 1.shader.meta │ │ │ │ │ │ ├── Style 3 Skin.shader │ │ │ │ │ │ ├── Style 3 Skin.shader.meta │ │ │ │ │ │ ├── Style 3.shader │ │ │ │ │ │ ├── Style 3.shader.meta │ │ │ │ │ │ ├── Style 4 Skin.shader │ │ │ │ │ │ ├── Style 4 Skin.shader.meta │ │ │ │ │ │ ├── Style 4.shader │ │ │ │ │ │ ├── Style 4.shader.meta │ │ │ │ │ │ ├── Style 5 Skin.shader │ │ │ │ │ │ ├── Style 5 Skin.shader.meta │ │ │ │ │ │ ├── Style 5.shader │ │ │ │ │ │ ├── Style 5.shader.meta │ │ │ │ │ │ ├── Style 6 Skin.shader │ │ │ │ │ │ ├── Style 6 Skin.shader.meta │ │ │ │ │ │ ├── Style 6.shader │ │ │ │ │ │ └── Style 6.shader.meta │ │ │ │ │ │ ├── UnlitVertexColorsTransparent.shader │ │ │ │ │ │ ├── UnlitVertexColorsTransparent.shader.meta │ │ │ │ │ │ ├── Vertex Colors Emissive.shader │ │ │ │ │ │ ├── Vertex Colors Emissive.shader.meta │ │ │ │ │ │ ├── Vertex Colors Specular.shader │ │ │ │ │ │ ├── Vertex Colors Specular.shader.meta │ │ │ │ │ │ ├── Vertex Colors.shader │ │ │ │ │ │ ├── Vertex Colors.shader.meta │ │ │ │ │ │ ├── Water.shader │ │ │ │ │ │ └── Water.shader.meta │ │ │ │ ├── Textures.meta │ │ │ │ ├── Textures │ │ │ │ │ ├── TCP2_Demo_BrickWall.png │ │ │ │ │ ├── TCP2_Demo_BrickWall.png.meta │ │ │ │ │ ├── TCP2_Demo_BrickWall_Flat.png │ │ │ │ │ ├── TCP2_Demo_BrickWall_Flat.png.meta │ │ │ │ │ ├── TCP2_Demo_Car.png │ │ │ │ │ ├── TCP2_Demo_Car.png.meta │ │ │ │ │ ├── TCP2_Demo_Car_Flat.png │ │ │ │ │ ├── TCP2_Demo_Car_Flat.png.meta │ │ │ │ │ ├── TCP2_Demo_Cat.png │ │ │ │ │ ├── TCP2_Demo_Cat.png.meta │ │ │ │ │ ├── TCP2_Demo_Cat_Flat.png │ │ │ │ │ ├── TCP2_Demo_Cat_Flat.png.meta │ │ │ │ │ ├── TCP2_Demo_Grass.png │ │ │ │ │ ├── TCP2_Demo_Grass.png.meta │ │ │ │ │ ├── TCP2_Demo_Logo.png │ │ │ │ │ ├── TCP2_Demo_Logo.png.meta │ │ │ │ │ ├── TCP2_Demo_Poster1.png │ │ │ │ │ ├── TCP2_Demo_Poster1.png.meta │ │ │ │ │ ├── TCP2_Demo_Poster2.png │ │ │ │ │ ├── TCP2_Demo_Poster2.png.meta │ │ │ │ │ ├── TCP2_Demo_Poster3.png │ │ │ │ │ ├── TCP2_Demo_Poster3.png.meta │ │ │ │ │ ├── TCP2_Demo_StoneGround.png │ │ │ │ │ ├── TCP2_Demo_StoneGround.png.meta │ │ │ │ │ ├── TCP2_Demo_UnityChan.png │ │ │ │ │ ├── TCP2_Demo_UnityChan.png.meta │ │ │ │ │ ├── TCP2_Demo_UnityChan_Flat.png │ │ │ │ │ ├── TCP2_Demo_UnityChan_Flat.png.meta │ │ │ │ │ ├── TCP2_Demo_UnityChan_Flat_ShadowColor.png │ │ │ │ │ ├── TCP2_Demo_UnityChan_Flat_ShadowColor.png.meta │ │ │ │ │ ├── TCP2_Demo_UnityChan_ShadowColor.png │ │ │ │ │ ├── TCP2_Demo_UnityChan_ShadowColor.png.meta │ │ │ │ │ ├── TCP2_Demo_WheelyBin.png │ │ │ │ │ └── TCP2_Demo_WheelyBin.png.meta │ │ │ │ ├── UnityChan License.pdf │ │ │ │ ├── UnityChan License.pdf.meta │ │ │ │ ├── UnityChan License.txt │ │ │ │ └── UnityChan License.txt.meta │ │ │ ├── Cat Demo URP.unitypackage │ │ │ ├── Cat Demo URP.unitypackage.meta │ │ │ ├── Common Demo Assets.meta │ │ │ ├── Common Demo Assets │ │ │ │ ├── Graphics.meta │ │ │ │ ├── Graphics │ │ │ │ │ ├── TCP2_Demo Cross.png │ │ │ │ │ ├── TCP2_Demo Cross.png.meta │ │ │ │ │ ├── TCP2_Demo Perlin Noise Normal.png │ │ │ │ │ ├── TCP2_Demo Perlin Noise Normal.png.meta │ │ │ │ │ ├── TCP2_Demo Perlin Noise.png │ │ │ │ │ ├── TCP2_Demo Perlin Noise.png.meta │ │ │ │ │ ├── TCP2_Demo Small Rocks Height.png │ │ │ │ │ ├── TCP2_Demo Small Rocks Height.png.meta │ │ │ │ │ ├── TCP2_Demo Small Rocks Normal.png │ │ │ │ │ ├── TCP2_Demo Small Rocks Normal.png.meta │ │ │ │ │ ├── TCP2_Demo Small Rocks.png │ │ │ │ │ ├── TCP2_Demo Small Rocks.png.meta │ │ │ │ │ ├── TCP2_Demo_CubemapDay.png │ │ │ │ │ ├── TCP2_Demo_CubemapDay.png.meta │ │ │ │ │ ├── TCP2_Demo_CubemapDusk.png │ │ │ │ │ ├── TCP2_Demo_CubemapDusk.png.meta │ │ │ │ │ ├── TCP2_Demo_CubemapNight.png │ │ │ │ │ ├── TCP2_Demo_CubemapNight.png.meta │ │ │ │ │ ├── TCP2_Demo_Logo_180.png │ │ │ │ │ ├── TCP2_Demo_Logo_180.png.meta │ │ │ │ │ ├── TCP2_Demo_Sand.png │ │ │ │ │ ├── TCP2_Demo_Sand.png.meta │ │ │ │ │ ├── TCP2_Demo_SkyboxDay.mat │ │ │ │ │ ├── TCP2_Demo_SkyboxDay.mat.meta │ │ │ │ │ ├── TCP2_Demo_SkyboxDusk.mat │ │ │ │ │ ├── TCP2_Demo_SkyboxDusk.mat.meta │ │ │ │ │ ├── TCP2_Demo_SkyboxNight.mat │ │ │ │ │ ├── TCP2_Demo_SkyboxNight.mat.meta │ │ │ │ │ ├── TCP2_Demo_WaterCircle.fbx │ │ │ │ │ └── TCP2_Demo_WaterCircle.fbx.meta │ │ │ │ ├── Kino Bloom.meta │ │ │ │ ├── Kino Bloom │ │ │ │ │ ├── Bloom.cs │ │ │ │ │ ├── Bloom.cs.meta │ │ │ │ │ ├── Editor.meta │ │ │ │ │ ├── Editor │ │ │ │ │ │ ├── BloomEditor.cs │ │ │ │ │ │ ├── BloomEditor.cs.meta │ │ │ │ │ │ ├── BloomGraphDrawer.cs │ │ │ │ │ │ ├── BloomGraphDrawer.cs.meta │ │ │ │ │ │ ├── KinoBloom.Editor.asmdef │ │ │ │ │ │ └── KinoBloom.Editor.asmdef.meta │ │ │ │ │ ├── Kino Bloom License.txt │ │ │ │ │ ├── Kino Bloom License.txt.meta │ │ │ │ │ ├── KinoBloom.Runtime.asmdef │ │ │ │ │ ├── KinoBloom.Runtime.asmdef.meta │ │ │ │ │ ├── Shader.meta │ │ │ │ │ └── Shader │ │ │ │ │ │ ├── Bloom.cginc │ │ │ │ │ │ ├── Bloom.cginc.meta │ │ │ │ │ │ ├── Bloom.shader │ │ │ │ │ │ └── Bloom.shader.meta │ │ │ │ ├── Scripts.meta │ │ │ │ ├── Scripts │ │ │ │ │ ├── TCP2_Demo_AnimateMaterial.cs │ │ │ │ │ ├── TCP2_Demo_AnimateMaterial.cs.meta │ │ │ │ │ ├── TCP2_Demo_Interactive.cs │ │ │ │ │ ├── TCP2_Demo_Interactive.cs.meta │ │ │ │ │ ├── TCP2_Demo_Interactive_Content.cs │ │ │ │ │ ├── TCP2_Demo_Interactive_Content.cs.meta │ │ │ │ │ ├── TCP2_Demo_Interactive_Environment.cs │ │ │ │ │ ├── TCP2_Demo_Interactive_Environment.cs.meta │ │ │ │ │ ├── TCP2_Demo_InvertedMaskImage.cs │ │ │ │ │ └── TCP2_Demo_InvertedMaskImage.cs.meta │ │ │ │ ├── UI.meta │ │ │ │ └── UI │ │ │ │ │ ├── TCP2_Demo_Line.png │ │ │ │ │ ├── TCP2_Demo_Line.png.meta │ │ │ │ │ ├── TCP2_Demo_TextBox.png │ │ │ │ │ └── TCP2_Demo_TextBox.png.meta │ │ │ ├── Demo TCP2 Cat.unity │ │ │ ├── Demo TCP2 Cat.unity.meta │ │ │ ├── Demo TCP2 Hybrid Shader.unity │ │ │ ├── Demo TCP2 Hybrid Shader.unity.meta │ │ │ ├── Demo TCP2 Material Layers.unity │ │ │ ├── Demo TCP2 Material Layers.unity.meta │ │ │ ├── Demo TCP2 PBS.unity │ │ │ ├── Demo TCP2 PBS.unity.meta │ │ │ ├── Demo TCP2 ShaderGenerator 2.unity │ │ │ ├── Demo TCP2 ShaderGenerator 2.unity.meta │ │ │ ├── Demo TCP2 ShaderGenerator.unity │ │ │ ├── Demo TCP2 ShaderGenerator.unity.meta │ │ │ ├── Hybrid Shader Demo Assets.meta │ │ │ ├── Hybrid Shader Demo Assets │ │ │ │ ├── Ground Hybrid.mat │ │ │ │ ├── Ground Hybrid.mat.meta │ │ │ │ ├── Robot Hybrid Basic.mat │ │ │ │ ├── Robot Hybrid Basic.mat.meta │ │ │ │ ├── Robot Hybrid Crisp.mat │ │ │ │ ├── Robot Hybrid Crisp.mat.meta │ │ │ │ ├── Robot Hybrid Glass.mat │ │ │ │ ├── Robot Hybrid Glass.mat.meta │ │ │ │ ├── Robot Hybrid MatCap.mat │ │ │ │ ├── Robot Hybrid MatCap.mat.meta │ │ │ │ ├── Robot Hybrid Metal.mat │ │ │ │ ├── Robot Hybrid Metal.mat.meta │ │ │ │ ├── Robot Hybrid Outline Lit.mat │ │ │ │ ├── Robot Hybrid Outline Lit.mat.meta │ │ │ │ ├── Robot Hybrid Outline.mat │ │ │ │ ├── Robot Hybrid Outline.mat.meta │ │ │ │ ├── Robot Standard.mat │ │ │ │ ├── Robot Standard.mat.meta │ │ │ │ ├── TCP2_Demo_Robot_Masks.png │ │ │ │ └── TCP2_Demo_Robot_Masks.png.meta │ │ │ ├── Material Layers Demo Assets.meta │ │ │ ├── Material Layers Demo Assets │ │ │ │ ├── Shaders.meta │ │ │ │ ├── Shaders │ │ │ │ │ ├── Snow Normal Based.shader │ │ │ │ │ ├── Snow Normal Based.shader.meta │ │ │ │ │ ├── Snow Sand Advanced.shader │ │ │ │ │ ├── Snow Sand Advanced.shader.meta │ │ │ │ │ ├── Snow Texture Based.shader │ │ │ │ │ ├── Snow Texture Based.shader.meta │ │ │ │ │ ├── Snow Y Position Based.shader │ │ │ │ │ └── Snow Y Position Based.shader.meta │ │ │ │ ├── TCP2_Demo Material Layer Dust Albedo.mat │ │ │ │ ├── TCP2_Demo Material Layer Dust Albedo.mat.meta │ │ │ │ ├── TCP2_Demo Material Layer Snow + Sand Advanced.mat │ │ │ │ ├── TCP2_Demo Material Layer Snow + Sand Advanced.mat.meta │ │ │ │ ├── TCP2_Demo Material Layer Snow Normal Based.mat │ │ │ │ ├── TCP2_Demo Material Layer Snow Normal Based.mat.meta │ │ │ │ ├── TCP2_Demo Material Layer Snow Texture Based.mat │ │ │ │ ├── TCP2_Demo Material Layer Snow Texture Based.mat.meta │ │ │ │ ├── TCP2_Demo Material Layer Snow Y Position Based.mat │ │ │ │ ├── TCP2_Demo Material Layer Snow Y Position Based.mat.meta │ │ │ │ ├── TCP2_Demo_MaterialLayer_Mesh.fbx │ │ │ │ └── TCP2_Demo_MaterialLayer_Mesh.fbx.meta │ │ │ ├── SG Demo Assets.meta │ │ │ ├── SG Demo Assets │ │ │ │ ├── Default.meta │ │ │ │ ├── Default │ │ │ │ │ ├── TCP2_Demo_DissolveRamp.png │ │ │ │ │ ├── TCP2_Demo_DissolveRamp.png.meta │ │ │ │ │ ├── TCP2_Demo_Robot_ComicBook.mat │ │ │ │ │ ├── TCP2_Demo_Robot_ComicBook.mat.meta │ │ │ │ │ ├── TCP2_Demo_Robot_Dissolve.mat │ │ │ │ │ ├── TCP2_Demo_Robot_Dissolve.mat.meta │ │ │ │ │ ├── TCP2_Demo_Robot_HSV.mat │ │ │ │ │ ├── TCP2_Demo_Robot_HSV.mat.meta │ │ │ │ │ ├── TCP2_Demo_Robot_OldSchool.mat │ │ │ │ │ ├── TCP2_Demo_Robot_OldSchool.mat.meta │ │ │ │ │ ├── TCP2_Demo_Robot_Sketch.mat │ │ │ │ │ ├── TCP2_Demo_Robot_Sketch.mat.meta │ │ │ │ │ ├── TCP2_Demo_Robot_Subsurface.mat │ │ │ │ │ └── TCP2_Demo_Robot_Subsurface.mat.meta │ │ │ │ ├── PBS.meta │ │ │ │ ├── PBS │ │ │ │ │ ├── TCP2_Demo_Robot_BlendedOutline.mat │ │ │ │ │ ├── TCP2_Demo_Robot_BlendedOutline.mat.meta │ │ │ │ │ ├── TCP2_Demo_Robot_HandPainted.mat │ │ │ │ │ ├── TCP2_Demo_Robot_HandPainted.mat.meta │ │ │ │ │ ├── TCP2_Demo_Robot_OutlineBehind.mat │ │ │ │ │ ├── TCP2_Demo_Robot_OutlineBehind.mat.meta │ │ │ │ │ ├── TCP2_Demo_Robot_PBS.mat │ │ │ │ │ ├── TCP2_Demo_Robot_PBS.mat.meta │ │ │ │ │ ├── TCP2_Demo_Robot_SketchPBS.mat │ │ │ │ │ └── TCP2_Demo_Robot_SketchPBS.mat.meta │ │ │ │ ├── Water.meta │ │ │ │ ├── Water │ │ │ │ │ ├── TCP2_Demo_Lava Cartoon.mat │ │ │ │ │ ├── TCP2_Demo_Lava Cartoon.mat.meta │ │ │ │ │ ├── TCP2_Demo_Lava.mat │ │ │ │ │ ├── TCP2_Demo_Lava.mat.meta │ │ │ │ │ ├── TCP2_Demo_Poison.mat │ │ │ │ │ ├── TCP2_Demo_Poison.mat.meta │ │ │ │ │ ├── TCP2_Demo_WaterRealistic.mat │ │ │ │ │ ├── TCP2_Demo_WaterRealistic.mat.meta │ │ │ │ │ ├── TCP2_Demo_WaterReflection.mat │ │ │ │ │ ├── TCP2_Demo_WaterReflection.mat.meta │ │ │ │ │ ├── TCP2_Demo_WaterWW.mat │ │ │ │ │ ├── TCP2_Demo_WaterWW.mat.meta │ │ │ │ │ ├── TCP2_Demo_WaterWW2.mat │ │ │ │ │ └── TCP2_Demo_WaterWW2.mat.meta │ │ │ │ ├── _Misc Assets.meta │ │ │ │ └── _Misc Assets │ │ │ │ │ ├── Roboto-Regular.ttf │ │ │ │ │ ├── Roboto-Regular.ttf.meta │ │ │ │ │ ├── TCP2_Demo_3DText.mat │ │ │ │ │ ├── TCP2_Demo_3DText.mat.meta │ │ │ │ │ ├── TCP2_Demo_3DText.shader │ │ │ │ │ ├── TCP2_Demo_3DText.shader.meta │ │ │ │ │ ├── TCP2_Demo_Balloon.mat │ │ │ │ │ ├── TCP2_Demo_Balloon.mat.meta │ │ │ │ │ ├── TCP2_Demo_Balloon.psd │ │ │ │ │ ├── TCP2_Demo_Balloon.psd.meta │ │ │ │ │ ├── TCP2_Demo_Brown.mat │ │ │ │ │ ├── TCP2_Demo_Brown.mat.meta │ │ │ │ │ ├── TCP2_Demo_GradientRamp.png │ │ │ │ │ ├── TCP2_Demo_GradientRamp.png.meta │ │ │ │ │ ├── TCP2_Demo_Lava.png │ │ │ │ │ ├── TCP2_Demo_Lava.png.meta │ │ │ │ │ ├── TCP2_Demo_LavaCartoon.png │ │ │ │ │ ├── TCP2_Demo_LavaCartoon.png.meta │ │ │ │ │ ├── TCP2_Demo_Poison.png │ │ │ │ │ ├── TCP2_Demo_Poison.png.meta │ │ │ │ │ ├── TCP2_Demo_Skybox.mat │ │ │ │ │ ├── TCP2_Demo_Skybox.mat.meta │ │ │ │ │ ├── TCP2_Demo_SmallWaves.png │ │ │ │ │ ├── TCP2_Demo_SmallWaves.png.meta │ │ │ │ │ ├── TCP2_Demo_Small_boat.fbx │ │ │ │ │ ├── TCP2_Demo_Small_boat.fbx.meta │ │ │ │ │ ├── TCP2_Demo_Small_boat.mat │ │ │ │ │ ├── TCP2_Demo_Small_boat.mat.meta │ │ │ │ │ ├── TCP2_Demo_WaterCartoon.png │ │ │ │ │ ├── TCP2_Demo_WaterCartoon.png.meta │ │ │ │ │ ├── TCP2_Demo_WaterCartoonSimple.png │ │ │ │ │ ├── TCP2_Demo_WaterCartoonSimple.png.meta │ │ │ │ │ ├── TCP2_Demo_Yellow.mat │ │ │ │ │ ├── TCP2_Demo_Yellow.mat.meta │ │ │ │ │ ├── TCP2_Water Foam Caustics.png │ │ │ │ │ ├── TCP2_Water Foam Caustics.png.meta │ │ │ │ │ ├── TCP2_Water Foam Round.png │ │ │ │ │ ├── TCP2_Water Foam Round.png.meta │ │ │ │ │ ├── TCP2_Water Foam Sponge.png │ │ │ │ │ └── TCP2_Water Foam Sponge.png.meta │ │ │ ├── SG2 Demo Assets.meta │ │ │ ├── SG2 Demo Assets │ │ │ │ ├── Default.meta │ │ │ │ ├── Default │ │ │ │ │ ├── TCP2_Demo_SG2 Detail Mask Advanced.mat │ │ │ │ │ ├── TCP2_Demo_SG2 Detail Mask Advanced.mat.meta │ │ │ │ │ ├── TCP2_Demo_SG2 Detail Mask Simple.mat │ │ │ │ │ ├── TCP2_Demo_SG2 Detail Mask Simple.mat.meta │ │ │ │ │ ├── TCP2_Demo_SG2 Dissolve Robot.mat │ │ │ │ │ ├── TCP2_Demo_SG2 Dissolve Robot.mat.meta │ │ │ │ │ ├── TCP2_Demo_SG2 Hologram Robot.mat │ │ │ │ │ ├── TCP2_Demo_SG2 Hologram Robot.mat.meta │ │ │ │ │ ├── TCP2_Demo_SG2 Hologram Torus.mat │ │ │ │ │ ├── TCP2_Demo_SG2 Hologram Torus.mat.meta │ │ │ │ │ ├── TCP2_Demo_SG2 Vertex Color Albedo.mat │ │ │ │ │ ├── TCP2_Demo_SG2 Vertex Color Albedo.mat.meta │ │ │ │ │ ├── TCP2_Demo_SG2 Water.mat │ │ │ │ │ ├── TCP2_Demo_SG2 Water.mat.meta │ │ │ │ │ ├── TCP2_Demo_SG2 Wind Animation Grass.mat │ │ │ │ │ └── TCP2_Demo_SG2 Wind Animation Grass.mat.meta │ │ │ │ ├── _Misc.meta │ │ │ │ └── _Misc │ │ │ │ │ ├── TCP2_Demo Ivy Normal.png │ │ │ │ │ ├── TCP2_Demo Ivy Normal.png.meta │ │ │ │ │ ├── TCP2_Demo Ivy.png │ │ │ │ │ ├── TCP2_Demo Ivy.png.meta │ │ │ │ │ ├── TCP2_Demo Scanlines.png │ │ │ │ │ ├── TCP2_Demo Scanlines.png.meta │ │ │ │ │ ├── TCP2_Demo Scratches.png │ │ │ │ │ ├── TCP2_Demo Scratches.png.meta │ │ │ │ │ ├── TCP2_Demo_AutoRotate.cs │ │ │ │ │ ├── TCP2_Demo_AutoRotate.cs.meta │ │ │ │ │ ├── TCP2_Demo_Grass.fbx │ │ │ │ │ ├── TCP2_Demo_Grass.fbx.meta │ │ │ │ │ ├── TCP2_Demo_Grass.png │ │ │ │ │ ├── TCP2_Demo_Grass.png.meta │ │ │ │ │ ├── TCP2_Demo_Torus Knot Vertex Colors.asset │ │ │ │ │ └── TCP2_Demo_Torus Knot Vertex Colors.asset.meta │ │ │ ├── TCP2 Code Injection Example.cginc │ │ │ ├── TCP2 Code Injection Example.cginc.meta │ │ │ ├── TCP2 Demo Assets.meta │ │ │ ├── TCP2 Demo Assets │ │ │ │ ├── Cubemaps.meta │ │ │ │ ├── Cubemaps │ │ │ │ │ ├── Cubemaps License.txt │ │ │ │ │ ├── Cubemaps License.txt.meta │ │ │ │ │ ├── TCP2_Demo_Cubemap_GoldenGate.jpg │ │ │ │ │ ├── TCP2_Demo_Cubemap_GoldenGate.jpg.meta │ │ │ │ │ ├── TCP2_Demo_Cubemap_LancellottiChapel.jpg │ │ │ │ │ ├── TCP2_Demo_Cubemap_LancellottiChapel.jpg.meta │ │ │ │ │ ├── TCP2_Demo_Cubemap_Lycksele.jpg │ │ │ │ │ ├── TCP2_Demo_Cubemap_Lycksele.jpg.meta │ │ │ │ │ ├── TCP2_Demo_Cubemap_NissiBeach.jpg │ │ │ │ │ ├── TCP2_Demo_Cubemap_NissiBeach.jpg.meta │ │ │ │ │ ├── TCP2_Demo_Cubemap_Yokohama.jpg │ │ │ │ │ ├── TCP2_Demo_Cubemap_Yokohama.jpg.meta │ │ │ │ │ ├── TCP2_Demo_Sky_GoldenGate.mat │ │ │ │ │ ├── TCP2_Demo_Sky_GoldenGate.mat.meta │ │ │ │ │ ├── TCP2_Demo_Sky_LancellottiChapel.mat │ │ │ │ │ ├── TCP2_Demo_Sky_LancellottiChapel.mat.meta │ │ │ │ │ ├── TCP2_Demo_Sky_Lycksele.mat │ │ │ │ │ ├── TCP2_Demo_Sky_Lycksele.mat.meta │ │ │ │ │ ├── TCP2_Demo_Sky_NissiBeach.mat │ │ │ │ │ ├── TCP2_Demo_Sky_NissiBeach.mat.meta │ │ │ │ │ ├── TCP2_Demo_Sky_Yokohama.mat │ │ │ │ │ └── TCP2_Demo_Sky_Yokohama.mat.meta │ │ │ │ ├── Misc.meta │ │ │ │ ├── Misc │ │ │ │ │ ├── TCP2_Demo.cs │ │ │ │ │ ├── TCP2_Demo.cs.meta │ │ │ │ │ ├── TCP2_Demo_PBS.cs │ │ │ │ │ ├── TCP2_Demo_PBS.cs.meta │ │ │ │ │ ├── TCP2_Demo_PBS_View.cs │ │ │ │ │ ├── TCP2_Demo_PBS_View.cs.meta │ │ │ │ │ ├── TCP2_Demo_Title.png │ │ │ │ │ ├── TCP2_Demo_Title.png.meta │ │ │ │ │ ├── TCP2_Demo_View.cs │ │ │ │ │ └── TCP2_Demo_View.cs.meta │ │ │ │ ├── Robot Kyle.meta │ │ │ │ └── Robot Kyle │ │ │ │ │ ├── Materials.meta │ │ │ │ │ ├── Materials │ │ │ │ │ ├── TCP2_Demo Robot PBS.mat │ │ │ │ │ └── TCP2_Demo Robot PBS.mat.meta │ │ │ │ │ ├── Model.meta │ │ │ │ │ ├── Model │ │ │ │ │ ├── TCP2_Demo Robot Kyle.fbx │ │ │ │ │ └── TCP2_Demo Robot Kyle.fbx.meta │ │ │ │ │ ├── Textures.meta │ │ │ │ │ └── Textures │ │ │ │ │ ├── TCP2_Demo Robot_Color.png │ │ │ │ │ ├── TCP2_Demo Robot_Color.png.meta │ │ │ │ │ ├── TCP2_Demo Robot_Color_NoAlpha.png │ │ │ │ │ ├── TCP2_Demo Robot_Color_NoAlpha.png.meta │ │ │ │ │ ├── TCP2_Demo Robot_Normal.png │ │ │ │ │ ├── TCP2_Demo Robot_Normal.png.meta │ │ │ │ │ ├── TCP2_Demo Robot_Thickness.png │ │ │ │ │ └── TCP2_Demo Robot_Thickness.png.meta │ │ │ ├── ToonyColorsPro.Demo.asmdef │ │ │ └── ToonyColorsPro.Demo.asmdef.meta │ │ ├── Documentation.meta │ │ ├── Documentation │ │ │ ├── Documentation Data.meta │ │ │ ├── Documentation Data │ │ │ │ ├── Anchors.meta │ │ │ │ ├── Anchors │ │ │ │ │ ├── alpha_blending.htm │ │ │ │ │ ├── alpha_blending.htm.meta │ │ │ │ │ ├── alpha_testing_(cutout).htm │ │ │ │ │ ├── alpha_testing_(cutout).htm.meta │ │ │ │ │ ├── base_properties.htm │ │ │ │ │ ├── base_properties.htm.meta │ │ │ │ │ ├── color_mask.htm │ │ │ │ │ ├── color_mask.htm.meta │ │ │ │ │ ├── cubemap_ambient.htm │ │ │ │ │ ├── cubemap_ambient.htm.meta │ │ │ │ │ ├── culling.htm │ │ │ │ │ ├── culling.htm.meta │ │ │ │ │ ├── custom_ambient.htm │ │ │ │ │ ├── custom_ambient.htm.meta │ │ │ │ │ ├── custom_lighting.htm │ │ │ │ │ ├── custom_lighting.htm.meta │ │ │ │ │ ├── detail_texture.htm │ │ │ │ │ ├── detail_texture.htm.meta │ │ │ │ │ ├── diffuse_tint.htm │ │ │ │ │ ├── diffuse_tint.htm.meta │ │ │ │ │ ├── directional_ambient.htm │ │ │ │ │ ├── directional_ambient.htm.meta │ │ │ │ │ ├── disable_wrapped_lighting.htm │ │ │ │ │ ├── disable_wrapped_lighting.htm.meta │ │ │ │ │ ├── independent_shadows.htm │ │ │ │ │ ├── independent_shadows.htm.meta │ │ │ │ │ ├── lightmap.htm │ │ │ │ │ ├── lightmap.htm.meta │ │ │ │ │ ├── masks.htm │ │ │ │ │ ├── masks.htm.meta │ │ │ │ │ ├── matcap.htm │ │ │ │ │ ├── matcap.htm.meta │ │ │ │ │ ├── matcap_sg.htm │ │ │ │ │ ├── matcap_sg.htm.meta │ │ │ │ │ ├── normal_bump_map.htm │ │ │ │ │ ├── normal_bump_map.htm.meta │ │ │ │ │ ├── normal_bump_map_sg.htm │ │ │ │ │ ├── normal_bump_map_sg.htm.meta │ │ │ │ │ ├── occlusion_map.htm │ │ │ │ │ ├── occlusion_map.htm.meta │ │ │ │ │ ├── outline.htm │ │ │ │ │ ├── outline.htm.meta │ │ │ │ │ ├── pbs_shader.htm │ │ │ │ │ ├── pbs_shader.htm.meta │ │ │ │ │ ├── ramp_control.htm │ │ │ │ │ ├── ramp_control.htm.meta │ │ │ │ │ ├── ramp_control_sg.htm │ │ │ │ │ ├── ramp_control_sg.htm.meta │ │ │ │ │ ├── ramp_generator.htm │ │ │ │ │ ├── ramp_generator.htm.meta │ │ │ │ │ ├── ramp_style.htm │ │ │ │ │ ├── ramp_style.htm.meta │ │ │ │ │ ├── ramp_style_sg.htm │ │ │ │ │ ├── ramp_style_sg.htm.meta │ │ │ │ │ ├── reflection.htm │ │ │ │ │ ├── reflection.htm.meta │ │ │ │ │ ├── reflection_sg.htm │ │ │ │ │ ├── reflection_sg.htm.meta │ │ │ │ │ ├── rim.htm │ │ │ │ │ ├── rim.htm.meta │ │ │ │ │ ├── rim_sg.htm │ │ │ │ │ ├── rim_sg.htm.meta │ │ │ │ │ ├── self-illumination_map.htm │ │ │ │ │ ├── self-illumination_map.htm.meta │ │ │ │ │ ├── shader_generator.htm │ │ │ │ │ ├── shader_generator.htm.meta │ │ │ │ │ ├── shader_target.htm │ │ │ │ │ ├── shader_target.htm.meta │ │ │ │ │ ├── sketch.htm │ │ │ │ │ ├── sketch.htm.meta │ │ │ │ │ ├── smoothed_normals_utility.htm │ │ │ │ │ ├── smoothed_normals_utility.htm.meta │ │ │ │ │ ├── specular.htm │ │ │ │ │ ├── specular.htm.meta │ │ │ │ │ ├── specular_sg.htm │ │ │ │ │ ├── specular_sg.htm.meta │ │ │ │ │ ├── stylized_fresnel.htm │ │ │ │ │ ├── stylized_fresnel.htm.meta │ │ │ │ │ ├── stylized_specular.htm │ │ │ │ │ ├── stylized_specular.htm.meta │ │ │ │ │ ├── subsurface_scattering.htm │ │ │ │ │ ├── subsurface_scattering.htm.meta │ │ │ │ │ ├── texture_blending.htm │ │ │ │ │ ├── texture_blending.htm.meta │ │ │ │ │ ├── textured_threshold.htm │ │ │ │ │ ├── textured_threshold.htm.meta │ │ │ │ │ ├── triplanar.htm │ │ │ │ │ ├── triplanar.htm.meta │ │ │ │ │ ├── unified_shader.htm │ │ │ │ │ ├── unified_shader.htm.meta │ │ │ │ │ ├── unpack_shaders.htm │ │ │ │ │ ├── unpack_shaders.htm.meta │ │ │ │ │ ├── vertex_colors.htm │ │ │ │ │ ├── vertex_colors.htm.meta │ │ │ │ │ ├── vertex_function.htm │ │ │ │ │ ├── vertex_function.htm.meta │ │ │ │ │ ├── vertex_texture_blending.htm │ │ │ │ │ ├── vertex_texture_blending.htm.meta │ │ │ │ │ ├── wrapped_lighting.htm │ │ │ │ │ └── wrapped_lighting.htm.meta │ │ │ │ ├── TCP2_Atlas.css │ │ │ │ ├── TCP2_Atlas.css.meta │ │ │ │ ├── TCP2_Documentation.css │ │ │ │ ├── TCP2_Documentation.css.meta │ │ │ │ ├── TCP2_HelpImages.png │ │ │ │ └── TCP2_HelpImages.png.meta │ │ │ ├── TCP2 Documentation.html │ │ │ └── TCP2 Documentation.html.meta │ │ ├── Editor.meta │ │ ├── Editor │ │ │ ├── Fonts.meta │ │ │ ├── Fonts │ │ │ │ ├── Roboto.meta │ │ │ │ ├── Roboto │ │ │ │ │ ├── Roboto - Apache License.txt │ │ │ │ │ ├── Roboto - Apache License.txt.meta │ │ │ │ │ ├── Roboto-Bold.ttf │ │ │ │ │ ├── Roboto-Bold.ttf.meta │ │ │ │ │ ├── Roboto-Medium.ttf │ │ │ │ │ ├── Roboto-Medium.ttf.meta │ │ │ │ │ ├── Roboto-Regular.ttf │ │ │ │ │ ├── Roboto-Regular.ttf.meta │ │ │ │ │ ├── RobotoMono_Regular.ttf │ │ │ │ │ └── RobotoMono_Regular.ttf.meta │ │ │ │ ├── sen.meta │ │ │ │ └── sen │ │ │ │ │ ├── sen - SIL Open Font License.txt │ │ │ │ │ ├── sen - SIL Open Font License.txt.meta │ │ │ │ │ ├── sen-bold.otf │ │ │ │ │ ├── sen-bold.otf.meta │ │ │ │ │ ├── sen-regular.otf │ │ │ │ │ └── sen-regular.otf.meta │ │ │ ├── Icons.meta │ │ │ ├── Icons │ │ │ │ ├── TCP2_CogIcon.png │ │ │ │ ├── TCP2_CogIcon.png.meta │ │ │ │ ├── TCP2_CogIcon2.png │ │ │ │ ├── TCP2_CogIcon2.png.meta │ │ │ │ ├── TCP2_CogIcon2_Down.png │ │ │ │ ├── TCP2_CogIcon2_Down.png.meta │ │ │ │ ├── TCP2_CogIcon2_Down_Pro.png │ │ │ │ ├── TCP2_CogIcon2_Down_Pro.png.meta │ │ │ │ ├── TCP2_CogIcon2_Pro.png │ │ │ │ ├── TCP2_CogIcon2_Pro.png.meta │ │ │ │ ├── TCP2_CogIcon_Down.png │ │ │ │ ├── TCP2_CogIcon_Down.png.meta │ │ │ │ ├── TCP2_Context.png │ │ │ │ ├── TCP2_Context.png.meta │ │ │ │ ├── TCP2_ContextIcon.png │ │ │ │ ├── TCP2_ContextIcon.png.meta │ │ │ │ ├── TCP2_Context_Pro.png │ │ │ │ ├── TCP2_Context_Pro.png.meta │ │ │ │ ├── TCP2_ContextualHelpBox.png │ │ │ │ ├── TCP2_ContextualHelpBox.png.meta │ │ │ │ ├── TCP2_ContextualHelpBoxHover.png │ │ │ │ ├── TCP2_ContextualHelpBoxHover.png.meta │ │ │ │ ├── TCP2_ContextualHelpBoxHover_Pro.png │ │ │ │ ├── TCP2_ContextualHelpBoxHover_Pro.png.meta │ │ │ │ ├── TCP2_ContextualHelpBox_Pro.png │ │ │ │ ├── TCP2_ContextualHelpBox_Pro.png.meta │ │ │ │ ├── TCP2_DropDownArrow.png │ │ │ │ ├── TCP2_DropDownArrow.png.meta │ │ │ │ ├── TCP2_DropDownArrow_Pro.png │ │ │ │ ├── TCP2_DropDownArrow_Pro.png.meta │ │ │ │ ├── TCP2_EnabledBg.png │ │ │ │ ├── TCP2_EnabledBg.png.meta │ │ │ │ ├── TCP2_EnabledBgProperty.png │ │ │ │ ├── TCP2_EnabledBgProperty.png.meta │ │ │ │ ├── TCP2_EnabledBgPropertyExpanded.png │ │ │ │ ├── TCP2_EnabledBgPropertyExpanded.png.meta │ │ │ │ ├── TCP2_EnabledBgPropertyExpanded_Pro.png │ │ │ │ ├── TCP2_EnabledBgPropertyExpanded_Pro.png.meta │ │ │ │ ├── TCP2_EnabledBgProperty_Pro.png │ │ │ │ ├── TCP2_EnabledBgProperty_Pro.png.meta │ │ │ │ ├── TCP2_EnabledBg_Pro.png │ │ │ │ ├── TCP2_EnabledBg_Pro.png.meta │ │ │ │ ├── TCP2_ErrorBgProperty.png │ │ │ │ ├── TCP2_ErrorBgProperty.png.meta │ │ │ │ ├── TCP2_ErrorBgPropertyExpanded.png │ │ │ │ ├── TCP2_ErrorBgPropertyExpanded.png.meta │ │ │ │ ├── TCP2_ErrorBgPropertyExpanded_Pro.png │ │ │ │ ├── TCP2_ErrorBgPropertyExpanded_Pro.png.meta │ │ │ │ ├── TCP2_ErrorBgProperty_Pro.png │ │ │ │ ├── TCP2_ErrorBgProperty_Pro.png.meta │ │ │ │ ├── TCP2_ErrorIcon.png │ │ │ │ ├── TCP2_ErrorIcon.png.meta │ │ │ │ ├── TCP2_FoldoutArrowDown.png │ │ │ │ ├── TCP2_FoldoutArrowDown.png.meta │ │ │ │ ├── TCP2_FoldoutArrowDownUnity.png │ │ │ │ ├── TCP2_FoldoutArrowDownUnity.png.meta │ │ │ │ ├── TCP2_FoldoutArrowDown_Pro.png │ │ │ │ ├── TCP2_FoldoutArrowDown_Pro.png.meta │ │ │ │ ├── TCP2_FoldoutArrowRight.png │ │ │ │ ├── TCP2_FoldoutArrowRight.png.meta │ │ │ │ ├── TCP2_FoldoutArrowRightUnity.png │ │ │ │ ├── TCP2_FoldoutArrowRightUnity.png.meta │ │ │ │ ├── TCP2_FoldoutArrowRight_Pro.png │ │ │ │ ├── TCP2_FoldoutArrowRight_Pro.png.meta │ │ │ │ ├── TCP2_HelpIcon.png │ │ │ │ ├── TCP2_HelpIcon.png.meta │ │ │ │ ├── TCP2_HelpIcon2.png │ │ │ │ ├── TCP2_HelpIcon2.png.meta │ │ │ │ ├── TCP2_HelpIcon2_Down.png │ │ │ │ ├── TCP2_HelpIcon2_Down.png.meta │ │ │ │ ├── TCP2_HelpIcon2_Down_Pro.png │ │ │ │ ├── TCP2_HelpIcon2_Down_Pro.png.meta │ │ │ │ ├── TCP2_HelpIcon2_Hover.png │ │ │ │ ├── TCP2_HelpIcon2_Hover.png.meta │ │ │ │ ├── TCP2_HelpIcon2_Hover_Pro.png │ │ │ │ ├── TCP2_HelpIcon2_Hover_Pro.png.meta │ │ │ │ ├── TCP2_HelpIcon2_Pro.png │ │ │ │ ├── TCP2_HelpIcon2_Pro.png.meta │ │ │ │ ├── TCP2_HelpIcon_Down.png │ │ │ │ ├── TCP2_HelpIcon_Down.png.meta │ │ │ │ ├── TCP2_InfoIcon.png │ │ │ │ ├── TCP2_InfoIcon.png.meta │ │ │ │ ├── TCP2_LayerIcon.png │ │ │ │ ├── TCP2_LayerIcon.png.meta │ │ │ │ ├── TCP2_LayerIcon_Pro.png │ │ │ │ ├── TCP2_LayerIcon_Pro.png.meta │ │ │ │ ├── TCP2_SmallHelpIcon.png │ │ │ │ ├── TCP2_SmallHelpIcon.png.meta │ │ │ │ ├── TCP2_Tab.png │ │ │ │ ├── TCP2_Tab.png.meta │ │ │ │ ├── TCP2_TabOff.png │ │ │ │ ├── TCP2_TabOff.png.meta │ │ │ │ ├── TCP2_TabOff_Pro.png │ │ │ │ ├── TCP2_TabOff_Pro.png.meta │ │ │ │ ├── TCP2_Tab_Pro.png │ │ │ │ ├── TCP2_Tab_Pro.png.meta │ │ │ │ ├── TCP2_WarningIcon.png │ │ │ │ └── TCP2_WarningIcon.png.meta │ │ │ ├── Inspectors.meta │ │ │ ├── Inspectors │ │ │ │ ├── MaterialInspector_Hybrid.cs │ │ │ │ ├── MaterialInspector_Hybrid.cs.meta │ │ │ │ ├── MaterialInspector_SG2.cs │ │ │ │ ├── MaterialInspector_SG2.cs.meta │ │ │ │ ├── TCP2_GetPosOnWater_Editor.cs │ │ │ │ ├── TCP2_GetPosOnWater_Editor.cs.meta │ │ │ │ ├── TCP2_MaterialInspector.cs │ │ │ │ ├── TCP2_MaterialInspector.cs.meta │ │ │ │ ├── TCP2_MaterialInspector_PBS.cs │ │ │ │ ├── TCP2_MaterialInspector_PBS.cs.meta │ │ │ │ ├── TCP2_OutlineInspector.cs │ │ │ │ ├── TCP2_OutlineInspector.cs.meta │ │ │ │ ├── TCP2_ShaderUpdateUnityTime_Editor.cs │ │ │ │ └── TCP2_ShaderUpdateUnityTime_Editor.cs.meta │ │ │ ├── Legacy.meta │ │ │ ├── Legacy │ │ │ │ ├── TCP2_Config.cs │ │ │ │ ├── TCP2_Config.cs.meta │ │ │ │ ├── TCP2_MaterialInspector_PBS_SG.cs │ │ │ │ ├── TCP2_MaterialInspector_PBS_SG.cs.meta │ │ │ │ ├── TCP2_MaterialInspector_SG.cs │ │ │ │ ├── TCP2_MaterialInspector_SG.cs.meta │ │ │ │ ├── TCP2_MaterialInspector_SurfacePBS_SG.cs │ │ │ │ ├── TCP2_MaterialInspector_SurfacePBS_SG.cs.meta │ │ │ │ ├── TCP2_ShaderGenerator.UIFeatures.cs │ │ │ │ ├── TCP2_ShaderGenerator.UIFeatures.cs.meta │ │ │ │ ├── TCP2_ShaderGenerator.cs │ │ │ │ ├── TCP2_ShaderGenerator.cs.meta │ │ │ │ ├── TCP2_ShaderGeneratorUtils.cs │ │ │ │ └── TCP2_ShaderGeneratorUtils.cs.meta │ │ │ ├── Shader Generator.meta │ │ │ ├── Shader Generator │ │ │ │ ├── CodeInjection.cs │ │ │ │ ├── CodeInjection.cs.meta │ │ │ │ ├── Config.cs │ │ │ │ ├── Config.cs.meta │ │ │ │ ├── GlobalOptions.cs │ │ │ │ ├── GlobalOptions.cs.meta │ │ │ │ ├── MaterialLayer.cs │ │ │ │ ├── MaterialLayer.cs.meta │ │ │ │ ├── Module.cs │ │ │ │ ├── Module.cs.meta │ │ │ │ ├── ReorderableLayoutList.cs │ │ │ │ ├── ReorderableLayoutList.cs.meta │ │ │ │ ├── SGUILayout.cs │ │ │ │ ├── SGUILayout.cs.meta │ │ │ │ ├── Serialization.cs │ │ │ │ ├── Serialization.cs.meta │ │ │ │ ├── ShaderGenerator2.cs │ │ │ │ ├── ShaderGenerator2.cs.meta │ │ │ │ ├── ShaderProperty.CustomMaterialProperty.cs │ │ │ │ ├── ShaderProperty.CustomMaterialProperty.cs.meta │ │ │ │ ├── ShaderProperty.Implementations.cs │ │ │ │ ├── ShaderProperty.Implementations.cs.meta │ │ │ │ ├── ShaderProperty.cs │ │ │ │ ├── ShaderProperty.cs.meta │ │ │ │ ├── Template.cs │ │ │ │ ├── Template.cs.meta │ │ │ │ ├── Tooltip.cs │ │ │ │ ├── Tooltip.cs.meta │ │ │ │ ├── UIFeatures.cs │ │ │ │ └── UIFeatures.cs.meta │ │ │ ├── Shader Importer.meta │ │ │ ├── Shader Importer │ │ │ │ ├── TCP2_ShaderImporter.cs │ │ │ │ ├── TCP2_ShaderImporter.cs.meta │ │ │ │ ├── TCP2_ShaderPostProcessor.cs │ │ │ │ └── TCP2_ShaderPostProcessor.cs.meta │ │ │ ├── TCP2_GradientManager.cs │ │ │ ├── TCP2_GradientManager.cs.meta │ │ │ ├── TCP2_Menu.cs │ │ │ ├── TCP2_Menu.cs.meta │ │ │ ├── TCP2_RampGenerator.cs │ │ │ ├── TCP2_RampGenerator.cs.meta │ │ │ ├── TCP2_SmoothedNormalsUtility.cs │ │ │ ├── TCP2_SmoothedNormalsUtility.cs.meta │ │ │ ├── TCP2_Upgrader.cs │ │ │ ├── TCP2_Upgrader.cs.meta │ │ │ ├── ToonyColorsPro.Editor.asmdef │ │ │ ├── ToonyColorsPro.Editor.asmdef.meta │ │ │ ├── Utils.meta │ │ │ └── Utils │ │ │ │ ├── TCP2_ExpressionParser.cs │ │ │ │ ├── TCP2_ExpressionParser.cs.meta │ │ │ │ ├── TCP2_GUI.cs │ │ │ │ ├── TCP2_GUI.cs.meta │ │ │ │ ├── TCP2_Utils.cs │ │ │ │ └── TCP2_Utils.cs.meta │ │ ├── Scripts.meta │ │ ├── Scripts │ │ │ ├── TCP2 GaussianBlurFilter.shader │ │ │ ├── TCP2 GaussianBlurFilter.shader.meta │ │ │ ├── TCP2 PlanarReflectionDepth.shader │ │ │ ├── TCP2 PlanarReflectionDepth.shader.meta │ │ │ ├── TCP2_CameraDepth.cs │ │ │ ├── TCP2_CameraDepth.cs.meta │ │ │ ├── TCP2_GetPosOnWater.cs │ │ │ ├── TCP2_GetPosOnWater.cs.meta │ │ │ ├── TCP2_GetVertexWavesPosition.cs │ │ │ ├── TCP2_GetVertexWavesPosition.cs.meta │ │ │ ├── TCP2_PlanarReflection.cs │ │ │ ├── TCP2_PlanarReflection.cs.meta │ │ │ ├── TCP2_RuntimeUtils.cs │ │ │ ├── TCP2_RuntimeUtils.cs.meta │ │ │ ├── TCP2_ShaderUpdateUnityTime.cs │ │ │ ├── TCP2_ShaderUpdateUnityTime.cs.meta │ │ │ ├── ToonyColorsPro.Runtime.asmdef │ │ │ └── ToonyColorsPro.Runtime.asmdef.meta │ │ ├── Shader Templates 2.meta │ │ ├── Shader Templates 2 │ │ │ ├── Modules.meta │ │ │ ├── Modules │ │ │ │ ├── Module_AlbedoHSV.txt │ │ │ │ ├── Module_AlbedoHSV.txt.meta │ │ │ │ ├── Module_Aura2.txt │ │ │ │ ├── Module_Aura2.txt.meta │ │ │ │ ├── Module_CurvedWorld.txt │ │ │ │ ├── Module_CurvedWorld.txt.meta │ │ │ │ ├── Module_CustomAmbient.txt │ │ │ │ ├── Module_CustomAmbient.txt.meta │ │ │ │ ├── Module_DepthTexture.txt │ │ │ │ ├── Module_DepthTexture.txt.meta │ │ │ │ ├── Module_Dissolve.txt │ │ │ │ ├── Module_Dissolve.txt.meta │ │ │ │ ├── Module_Dithering.txt │ │ │ │ ├── Module_Dithering.txt.meta │ │ │ │ ├── Module_HSV.txt │ │ │ │ ├── Module_HSV.txt.meta │ │ │ │ ├── Module_Hash Functions.txt │ │ │ │ ├── Module_Hash Functions.txt.meta │ │ │ │ ├── Module_MatCap.txt │ │ │ │ ├── Module_MatCap.txt.meta │ │ │ │ ├── Module_NdotL Stylization.txt │ │ │ │ ├── Module_NdotL Stylization.txt.meta │ │ │ │ ├── Module_NoTile Sampling.txt │ │ │ │ ├── Module_NoTile Sampling.txt.meta │ │ │ │ ├── Module_Normal Mapping.txt │ │ │ │ ├── Module_Normal Mapping.txt.meta │ │ │ │ ├── Module_Outline.txt │ │ │ │ ├── Module_Outline.txt.meta │ │ │ │ ├── Module_Ramp Shading LWRP.txt │ │ │ │ ├── Module_Ramp Shading LWRP.txt.meta │ │ │ │ ├── Module_Ramp Shading.txt │ │ │ │ ├── Module_Ramp Shading.txt.meta │ │ │ │ ├── Module_Reflection.txt │ │ │ │ ├── Module_Reflection.txt.meta │ │ │ │ ├── Module_Rim Lighting.txt │ │ │ │ ├── Module_Rim Lighting.txt.meta │ │ │ │ ├── Module_Screen Space UV.txt │ │ │ │ ├── Module_Screen Space UV.txt.meta │ │ │ │ ├── Module_ShadowHSV.txt │ │ │ │ ├── Module_ShadowHSV.txt.meta │ │ │ │ ├── Module_Sketch.txt │ │ │ │ ├── Module_Sketch.txt.meta │ │ │ │ ├── Module_Specular.txt │ │ │ │ ├── Module_Specular.txt.meta │ │ │ │ ├── Module_Subsurface Scattering.txt │ │ │ │ ├── Module_Subsurface Scattering.txt.meta │ │ │ │ ├── Module_Terrain.txt │ │ │ │ ├── Module_Terrain.txt.meta │ │ │ │ ├── Module_Texture Blending.txt │ │ │ │ ├── Module_Texture Blending.txt.meta │ │ │ │ ├── Module_Triplanar Sampling.txt │ │ │ │ ├── Module_Triplanar Sampling.txt.meta │ │ │ │ ├── Module_Triplanar.txt │ │ │ │ ├── Module_Triplanar.txt.meta │ │ │ │ ├── Module_VertExmotion.txt │ │ │ │ ├── Module_VertExmotion.txt.meta │ │ │ │ ├── Module_VertexDisplacement.txt │ │ │ │ ├── Module_VertexDisplacement.txt.meta │ │ │ │ ├── Module_Vertical Fog.txt │ │ │ │ ├── Module_Vertical Fog.txt.meta │ │ │ │ ├── Module_Water.txt │ │ │ │ ├── Module_Water.txt.meta │ │ │ │ ├── Module_Wind.txt │ │ │ │ └── Module_Wind.txt.meta │ │ │ ├── SG2_Template_Default.txt │ │ │ ├── SG2_Template_Default.txt.meta │ │ │ ├── SG2_Template_URP.txt │ │ │ └── SG2_Template_URP.txt.meta │ │ ├── Shader Templates.meta │ │ ├── Shader Templates │ │ │ ├── TCP2_ShaderTemplate_Default.txt │ │ │ ├── TCP2_ShaderTemplate_Default.txt.meta │ │ │ ├── TCP2_ShaderTemplate_Default_CurvedWorld.txt │ │ │ ├── TCP2_ShaderTemplate_Default_CurvedWorld.txt.meta │ │ │ ├── TCP2_ShaderTemplate_PBS.txt │ │ │ ├── TCP2_ShaderTemplate_PBS.txt.meta │ │ │ ├── TCP2_ShaderTemplate_SurfacePBS.txt │ │ │ ├── TCP2_ShaderTemplate_SurfacePBS.txt.meta │ │ │ ├── TCP2_ShaderTemplate_Terrain.txt │ │ │ ├── TCP2_ShaderTemplate_Terrain.txt.meta │ │ │ ├── TCP2_ShaderTemplate_Water.txt │ │ │ ├── TCP2_ShaderTemplate_Water.txt.meta │ │ │ ├── TCP2_ShaderTemplate_Water_CurvedWorld.txt │ │ │ └── TCP2_ShaderTemplate_Water_CurvedWorld.txt.meta │ │ ├── Shaders Generated.meta │ │ ├── Shaders Generated │ │ │ ├── Examples.meta │ │ │ ├── Examples │ │ │ │ ├── Default.meta │ │ │ │ ├── Default │ │ │ │ │ ├── Comic Book.shader │ │ │ │ │ ├── Comic Book.shader.meta │ │ │ │ │ ├── Dissolve.shader │ │ │ │ │ ├── Dissolve.shader.meta │ │ │ │ │ ├── HSV.shader │ │ │ │ │ ├── HSV.shader.meta │ │ │ │ │ ├── Old School.shader │ │ │ │ │ ├── Old School.shader.meta │ │ │ │ │ ├── Sketch.shader │ │ │ │ │ ├── Sketch.shader.meta │ │ │ │ │ ├── Snow Accumulation.shader │ │ │ │ │ ├── Snow Accumulation.shader.meta │ │ │ │ │ ├── Subsurface Scattering.shader │ │ │ │ │ └── Subsurface Scattering.shader.meta │ │ │ │ ├── PBS.meta │ │ │ │ ├── PBS │ │ │ │ │ ├── Blended Outline.shader │ │ │ │ │ ├── Blended Outline.shader.meta │ │ │ │ │ ├── Hand Painted.shader │ │ │ │ │ ├── Hand Painted.shader.meta │ │ │ │ │ ├── Outline Behind.shader │ │ │ │ │ ├── Outline Behind.shader.meta │ │ │ │ │ ├── Sketch.shader │ │ │ │ │ └── Sketch.shader.meta │ │ │ │ ├── SG2.meta │ │ │ │ ├── SG2 │ │ │ │ │ ├── Animated Dissolve.shader │ │ │ │ │ ├── Animated Dissolve.shader.meta │ │ │ │ │ ├── Detail Texture Simple.shader │ │ │ │ │ ├── Detail Texture Simple.shader.meta │ │ │ │ │ ├── Detail Texture.shader │ │ │ │ │ ├── Detail Texture.shader.meta │ │ │ │ │ ├── Hologram.shader │ │ │ │ │ ├── Hologram.shader.meta │ │ │ │ │ ├── Stylized Water.shader │ │ │ │ │ ├── Stylized Water.shader.meta │ │ │ │ │ ├── Vertex Color Albedo.shader │ │ │ │ │ ├── Vertex Color Albedo.shader.meta │ │ │ │ │ ├── Water.shader │ │ │ │ │ ├── Water.shader.meta │ │ │ │ │ ├── Wind Animation.shader │ │ │ │ │ └── Wind Animation.shader.meta │ │ │ │ ├── Water.meta │ │ │ │ └── Water │ │ │ │ │ ├── Lava Cartoon.shader │ │ │ │ │ ├── Lava Cartoon.shader.meta │ │ │ │ │ ├── Lava.shader │ │ │ │ │ ├── Lava.shader.meta │ │ │ │ │ ├── Poison.shader │ │ │ │ │ ├── Poison.shader.meta │ │ │ │ │ ├── Realistic.shader │ │ │ │ │ ├── Realistic.shader.meta │ │ │ │ │ ├── Reflection.shader │ │ │ │ │ ├── Reflection.shader.meta │ │ │ │ │ ├── Water WindWaker.shader │ │ │ │ │ ├── Water WindWaker.shader.meta │ │ │ │ │ ├── Water WindWaker2.shader │ │ │ │ │ └── Water WindWaker2.shader.meta │ │ │ ├── UserMy TCP2 Shader.shader │ │ │ └── UserMy TCP2 Shader.shader.meta │ │ ├── Shaders.meta │ │ ├── Shaders │ │ │ ├── Hybrid 2.meta │ │ │ ├── Hybrid 2 │ │ │ │ ├── TCP2 Hybrid 2 Include.cginc │ │ │ │ ├── TCP2 Hybrid 2 Include.cginc.meta │ │ │ │ ├── TCP2 Hybrid Shader 2 Outline.tcp2shader │ │ │ │ ├── TCP2 Hybrid Shader 2 Outline.tcp2shader.meta │ │ │ │ ├── TCP2 Hybrid Shader 2.tcp2shader │ │ │ │ └── TCP2 Hybrid Shader 2.tcp2shader.meta │ │ │ ├── Legacy.meta │ │ │ ├── Legacy │ │ │ │ ├── Include.meta │ │ │ │ ├── Include │ │ │ │ │ ├── TCP2_Outline.shader │ │ │ │ │ ├── TCP2_Outline.shader.meta │ │ │ │ │ ├── TCP2_Outline_Behind.shader │ │ │ │ │ ├── TCP2_Outline_Behind.shader.meta │ │ │ │ │ ├── TCP2_Outline_Behind_SM2.shader │ │ │ │ │ ├── TCP2_Outline_Behind_SM2.shader.meta │ │ │ │ │ ├── TCP2_Outline_Include.cginc │ │ │ │ │ ├── TCP2_Outline_Include.cginc.meta │ │ │ │ │ ├── TCP2_Outline_SM2.shader │ │ │ │ │ ├── TCP2_Outline_SM2.shader.meta │ │ │ │ │ ├── TCP2_Outline_Stencil.shader │ │ │ │ │ └── TCP2_Outline_Stencil.shader.meta │ │ │ │ ├── TCP2_OutlineOnly Blended SM2.shader │ │ │ │ ├── TCP2_OutlineOnly Blended SM2.shader.meta │ │ │ │ ├── TCP2_OutlineOnly Blended.shader │ │ │ │ ├── TCP2_OutlineOnly Blended.shader.meta │ │ │ │ ├── TCP2_OutlineOnly SM2.shader │ │ │ │ ├── TCP2_OutlineOnly SM2.shader.meta │ │ │ │ ├── TCP2_OutlineOnly.shader │ │ │ │ └── TCP2_OutlineOnly.shader.meta │ │ │ ├── Standard PBS.meta │ │ │ └── Standard PBS │ │ │ │ ├── TCP2_PBS_BRDF.cginc │ │ │ │ ├── TCP2_PBS_BRDF.cginc.meta │ │ │ │ ├── TCP2_PBS_Core.cginc │ │ │ │ ├── TCP2_PBS_Core.cginc.meta │ │ │ │ ├── TCP2_PBS_Main.cginc │ │ │ │ ├── TCP2_PBS_Main.cginc.meta │ │ │ │ ├── TCP2_PBS_ShadowMeta.shader │ │ │ │ ├── TCP2_PBS_ShadowMeta.shader.meta │ │ │ │ ├── TCP2_Standard PBS (Specular).shader │ │ │ │ ├── TCP2_Standard PBS (Specular).shader.meta │ │ │ │ ├── TCP2_Standard PBS Outline (Specular).shader │ │ │ │ ├── TCP2_Standard PBS Outline (Specular).shader.meta │ │ │ │ ├── TCP2_Standard PBS Outline Blended (Specular).shader │ │ │ │ ├── TCP2_Standard PBS Outline Blended (Specular).shader.meta │ │ │ │ ├── TCP2_Standard PBS Outline Blended.shader │ │ │ │ ├── TCP2_Standard PBS Outline Blended.shader.meta │ │ │ │ ├── TCP2_Standard PBS Outline.shader │ │ │ │ ├── TCP2_Standard PBS Outline.shader.meta │ │ │ │ ├── TCP2_Standard PBS.shader │ │ │ │ └── TCP2_Standard PBS.shader.meta │ │ ├── Smoothed Meshes.meta │ │ ├── Smoothed Meshes │ │ │ ├── Robot Kyle - Robot2_6854 [TCP2 Smoothed].asset │ │ │ ├── Robot Kyle - Robot2_6854 [TCP2 Smoothed].asset.meta │ │ │ ├── TCP2_Demo Robot Kyle - VColors [TCP2 Smoothed].asset │ │ │ └── TCP2_Demo Robot Kyle - VColors [TCP2 Smoothed].asset.meta │ │ ├── Textures.meta │ │ └── Textures │ │ │ ├── Dithering.meta │ │ │ ├── Dithering │ │ │ ├── TCP2_DitherPattern_Bayer_16.png │ │ │ ├── TCP2_DitherPattern_Bayer_16.png.meta │ │ │ ├── TCP2_DitherPattern_Bayer_8.png │ │ │ ├── TCP2_DitherPattern_Bayer_8.png.meta │ │ │ ├── TCP2_DitherPattern_BlueNoise_256.png │ │ │ ├── TCP2_DitherPattern_BlueNoise_256.png.meta │ │ │ ├── TCP2_DitherPattern_BlueNoise_64.png │ │ │ └── TCP2_DitherPattern_BlueNoise_64.png.meta │ │ │ ├── MatCap.meta │ │ │ ├── MatCap │ │ │ ├── MC 4 Colors.png │ │ │ ├── MC 4 Colors.png.meta │ │ │ ├── MC Additive 1.png │ │ │ ├── MC Additive 1.png.meta │ │ │ ├── MC Additive 2.png │ │ │ ├── MC Additive 2.png.meta │ │ │ ├── MC Additive 3.png │ │ │ ├── MC Additive 3.png.meta │ │ │ ├── MC Backlit 2.png │ │ │ ├── MC Backlit 2.png.meta │ │ │ ├── MC Backlit.png │ │ │ ├── MC Backlit.png.meta │ │ │ ├── MC Basic 1.png │ │ │ ├── MC Basic 1.png.meta │ │ │ ├── MC Basic 2.png │ │ │ ├── MC Basic 2.png.meta │ │ │ ├── MC Basic 3.png │ │ │ ├── MC Basic 3.png.meta │ │ │ ├── MC Cyan and Purple.png │ │ │ ├── MC Cyan and Purple.png.meta │ │ │ ├── MC Frontlit.png │ │ │ ├── MC Frontlit.png.meta │ │ │ ├── MC Metal Copper.png │ │ │ ├── MC Metal Copper.png.meta │ │ │ ├── MC Metal Gold.png │ │ │ ├── MC Metal Gold.png.meta │ │ │ ├── MC Metal Silver.png │ │ │ ├── MC Metal Silver.png.meta │ │ │ ├── MC Metallic Rough Orange.png │ │ │ ├── MC Metallic Rough Orange.png.meta │ │ │ ├── MC Metallic Rough.png │ │ │ ├── MC Metallic Rough.png.meta │ │ │ ├── MC Metallic Shiny Orange.png │ │ │ ├── MC Metallic Shiny Orange.png.meta │ │ │ ├── MC Metallic Shiny.png │ │ │ ├── MC Metallic Shiny.png.meta │ │ │ ├── MC Orange and Teal 2.png │ │ │ ├── MC Orange and Teal 2.png.meta │ │ │ ├── MC Orange and Teal.png │ │ │ ├── MC Orange and Teal.png.meta │ │ │ ├── MC Rainbow Shiny.png │ │ │ ├── MC Rainbow Shiny.png.meta │ │ │ ├── MC Rainbow.png │ │ │ ├── MC Rainbow.png.meta │ │ │ ├── MC Red Highlight 2.png │ │ │ ├── MC Red Highlight 2.png.meta │ │ │ ├── MC Red Highlight.png │ │ │ ├── MC Red Highlight.png.meta │ │ │ ├── MC Reflection 2.png │ │ │ ├── MC Reflection 2.png.meta │ │ │ ├── MC Reflection.png │ │ │ └── MC Reflection.png.meta │ │ │ ├── Ramps.meta │ │ │ ├── Ramps │ │ │ ├── TCP2_Ramp_3Levels.png │ │ │ ├── TCP2_Ramp_3Levels.png.meta │ │ │ ├── TCP2_Ramp_3Levels_2.png │ │ │ ├── TCP2_Ramp_3Levels_2.png.meta │ │ │ ├── TCP2_Ramp_4Levels.png │ │ │ ├── TCP2_Ramp_4Levels.png.meta │ │ │ ├── TCP2_Ramp_4Levels_2.png │ │ │ ├── TCP2_Ramp_4Levels_2.png.meta │ │ │ ├── TCP2_Ramp_8px.png │ │ │ ├── TCP2_Ramp_8px.png.meta │ │ │ ├── TCP2_Ramp_Backlit.png │ │ │ ├── TCP2_Ramp_Backlit.png.meta │ │ │ ├── TCP2_Ramp_Hard.png │ │ │ ├── TCP2_Ramp_Hard.png.meta │ │ │ ├── TCP2_Ramp_OldSchool.png │ │ │ ├── TCP2_Ramp_OldSchool.png.meta │ │ │ ├── TCP2_Ramp_OldSchool_2.png │ │ │ ├── TCP2_Ramp_OldSchool_2.png.meta │ │ │ ├── TCP2_Ramp_OldSchool_3.png │ │ │ ├── TCP2_Ramp_OldSchool_3.png.meta │ │ │ ├── TCP2_Ramp_UnityGradient.png │ │ │ └── TCP2_Ramp_UnityGradient.png.meta │ │ │ ├── Sketch.meta │ │ │ ├── Sketch │ │ │ ├── TCP2_ProgressiveSketch_Lines.png │ │ │ ├── TCP2_ProgressiveSketch_Lines.png.meta │ │ │ ├── TCP2_SketchA_Cross.png │ │ │ ├── TCP2_SketchA_Cross.png.meta │ │ │ ├── TCP2_SketchA_Diag.png │ │ │ ├── TCP2_SketchA_Diag.png.meta │ │ │ ├── TCP2_SketchB_Diag1.png │ │ │ ├── TCP2_SketchB_Diag1.png.meta │ │ │ ├── TCP2_SketchB_Diag2.png │ │ │ ├── TCP2_SketchB_Diag2.png.meta │ │ │ ├── TCP2_SketchB_Hor (ColorBurn).png │ │ │ ├── TCP2_SketchB_Hor (ColorBurn).png.meta │ │ │ ├── TCP2_SketchB_Hor.png │ │ │ ├── TCP2_SketchB_Hor.png.meta │ │ │ ├── TCP2_SketchC.png │ │ │ ├── TCP2_SketchC.png.meta │ │ │ ├── TCP2_SketchD.png │ │ │ ├── TCP2_SketchD.png.meta │ │ │ ├── TCP2_SketchE.png │ │ │ ├── TCP2_SketchE.png.meta │ │ │ ├── TCP2_SketchF.png │ │ │ ├── TCP2_SketchF.png.meta │ │ │ ├── TCP2_SketchF_Diag.png │ │ │ ├── TCP2_SketchF_Diag.png.meta │ │ │ ├── TCP2_SketchG_Hatches.png │ │ │ ├── TCP2_SketchG_Hatches.png.meta │ │ │ ├── TCP2_SketchGradient_Diamond.png │ │ │ ├── TCP2_SketchGradient_Diamond.png.meta │ │ │ ├── TCP2_SketchGradient_Halftone.png │ │ │ ├── TCP2_SketchGradient_Halftone.png.meta │ │ │ ├── TCP2_SketchGradient_Halftone2.png │ │ │ ├── TCP2_SketchGradient_Halftone2.png.meta │ │ │ ├── TCP2_SketchGradient_Square.png │ │ │ └── TCP2_SketchGradient_Square.png.meta │ │ │ ├── TCP2_NoTileNoise.png │ │ │ ├── TCP2_NoTileNoise.png.meta │ │ │ ├── TCP2_NoTileNoise_256.png │ │ │ ├── TCP2_NoTileNoise_256.png.meta │ │ │ ├── Threshold.meta │ │ │ └── Threshold │ │ │ ├── TCP2_ThresholdTex_Handpaint.png │ │ │ ├── TCP2_ThresholdTex_Handpaint.png.meta │ │ │ ├── TCP2_ThresholdTex_Handpaint_2.png │ │ │ ├── TCP2_ThresholdTex_Handpaint_2.png.meta │ │ │ ├── TCP2_ThresholdTex_Handpaint_3.png │ │ │ ├── TCP2_ThresholdTex_Handpaint_3.png.meta │ │ │ ├── TCP2_ThresholdTex_Noise.png │ │ │ ├── TCP2_ThresholdTex_Noise.png.meta │ │ │ ├── TCP2_ThresholdTex_Pastel.png │ │ │ └── TCP2_ThresholdTex_Pastel.png.meta │ ├── UIImageShader.shader │ └── UIImageShader.shader.meta ├── Tests.meta ├── Tests │ ├── Dependencies.meta │ ├── Dependencies │ │ ├── Castle.Core.dll │ │ ├── Castle.Core.dll.meta │ │ ├── FluentAssertions.dll │ │ ├── FluentAssertions.dll.meta │ │ ├── Microsoft.CodeAnalysis.CSharp.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.dll.meta │ │ ├── Microsoft.CodeAnalysis.dll │ │ ├── Microsoft.CodeAnalysis.dll.meta │ │ ├── NSubstitute.dll │ │ ├── NSubstitute.dll.meta │ │ ├── System.Buffers.dll │ │ ├── System.Buffers.dll.meta │ │ ├── System.Collections.Immutable.dll │ │ ├── System.Collections.Immutable.dll.meta │ │ ├── System.Collections.Specialized.dll │ │ ├── System.Collections.Specialized.dll.meta │ │ ├── System.ComponentModel.TypeConverter.dll │ │ ├── System.ComponentModel.TypeConverter.dll.meta │ │ ├── System.Memory.dll │ │ ├── System.Memory.dll.meta │ │ ├── System.Numerics.Vectors.dll │ │ ├── System.Numerics.Vectors.dll.meta │ │ ├── System.Reflection.Metadata.dll │ │ ├── System.Reflection.Metadata.dll.meta │ │ ├── System.Reflection.TypeExtensions.dll │ │ ├── System.Reflection.TypeExtensions.dll.meta │ │ ├── System.Runtime.CompilerServices.Unsafe.dll │ │ ├── System.Runtime.CompilerServices.Unsafe.dll.meta │ │ ├── System.Text.Encoding.CodePages.dll │ │ ├── System.Text.Encoding.CodePages.dll.meta │ │ ├── System.Text.RegularExpressions.dll │ │ ├── System.Text.RegularExpressions.dll.meta │ │ ├── System.Threading.Tasks.Extensions.dll │ │ ├── System.Threading.Tasks.Extensions.dll.meta │ │ ├── System.Xml.ReaderWriter.dll │ │ ├── System.Xml.ReaderWriter.dll.meta │ │ ├── System.Xml.XmlDocument.dll │ │ └── System.Xml.XmlDocument.dll.meta │ ├── EditMode.meta │ ├── EditMode │ │ ├── BuildTest.cs │ │ ├── BuildTest.cs.meta │ │ ├── GameFactoryResourcesTests.cs │ │ ├── GameFactoryResourcesTests.cs.meta │ │ ├── GuidDuplicationTest.cs │ │ ├── GuidDuplicationTest.cs.meta │ │ ├── LevelServiceTest.cs │ │ ├── LevelServiceTest.cs.meta │ │ ├── ResourcesPrefabValidationTests.cs │ │ ├── ResourcesPrefabValidationTests.cs.meta │ │ ├── SceneValidationTests.cs │ │ ├── SceneValidationTests.cs.meta │ │ ├── SoundEnumFilesTests.cs │ │ ├── SoundEnumFilesTests.cs.meta │ │ ├── StaticDataResourcesTests.cs │ │ ├── StaticDataResourcesTests.cs.meta │ │ ├── Tests.EditMode.asmdef │ │ ├── Tests.EditMode.asmdef.meta │ │ ├── UIFactoryResourcesTests.cs │ │ ├── UIFactoryResourcesTests.cs.meta │ │ ├── VibrationEnumFileTests.cs │ │ └── VibrationEnumFileTests.cs.meta │ ├── PlayMode.meta │ └── PlayMode │ │ ├── GameFactoryPlayModeTests.cs │ │ ├── GameFactoryPlayModeTests.cs.meta │ │ ├── PMTest.cs │ │ ├── PMTest.cs.meta │ │ ├── Tests.PlayMode.asmdef │ │ ├── Tests.PlayMode.asmdef.meta │ │ ├── UIFactoryPlayModeTests.cs │ │ ├── UIFactoryPlayModeTests.cs.meta │ │ ├── WidgetProviderPlayModeTests.cs │ │ └── WidgetProviderPlayModeTests.cs.meta ├── TextMesh Pro.meta ├── TextMesh Pro │ ├── Documentation.meta │ ├── Documentation │ │ ├── TextMesh Pro User Guide 2016.pdf │ │ └── TextMesh Pro User Guide 2016.pdf.meta │ ├── Fonts.meta │ ├── Fonts │ │ ├── LiberationSans - OFL.txt │ │ ├── LiberationSans - OFL.txt.meta │ │ ├── LiberationSans.ttf │ │ └── LiberationSans.ttf.meta │ ├── Resources.meta │ ├── Resources │ │ ├── Fonts & Materials.meta │ │ ├── Fonts & Materials │ │ │ ├── LiberationSans SDF - Drop Shadow.mat │ │ │ ├── LiberationSans SDF - Drop Shadow.mat.meta │ │ │ ├── LiberationSans SDF - Fallback.asset │ │ │ ├── LiberationSans SDF - Fallback.asset.meta │ │ │ ├── LiberationSans SDF - Outline.mat │ │ │ ├── LiberationSans SDF - Outline.mat.meta │ │ │ ├── LiberationSans SDF.asset │ │ │ └── LiberationSans SDF.asset.meta │ │ ├── LineBreaking Following Characters.txt │ │ ├── LineBreaking Following Characters.txt.meta │ │ ├── LineBreaking Leading Characters.txt │ │ ├── LineBreaking Leading Characters.txt.meta │ │ ├── Sprite Assets.meta │ │ ├── Sprite Assets │ │ │ ├── EmojiOne.asset │ │ │ └── EmojiOne.asset.meta │ │ ├── Style Sheets.meta │ │ ├── Style Sheets │ │ │ ├── Default Style Sheet.asset │ │ │ └── Default Style Sheet.asset.meta │ │ ├── TMP Settings.asset │ │ └── TMP Settings.asset.meta │ ├── Shaders.meta │ ├── Shaders │ │ ├── SDFFunctions.hlsl │ │ ├── SDFFunctions.hlsl.meta │ │ ├── TMP_Bitmap-Custom-Atlas.shader │ │ ├── TMP_Bitmap-Custom-Atlas.shader.meta │ │ ├── TMP_Bitmap-Mobile.shader │ │ ├── TMP_Bitmap-Mobile.shader.meta │ │ ├── TMP_Bitmap.shader │ │ ├── TMP_Bitmap.shader.meta │ │ ├── TMP_SDF Overlay.shader │ │ ├── TMP_SDF Overlay.shader.meta │ │ ├── TMP_SDF SSD.shader │ │ ├── TMP_SDF SSD.shader.meta │ │ ├── TMP_SDF-HDRP LIT.shadergraph │ │ ├── TMP_SDF-HDRP LIT.shadergraph.meta │ │ ├── TMP_SDF-HDRP UNLIT.shadergraph │ │ ├── TMP_SDF-HDRP UNLIT.shadergraph.meta │ │ ├── TMP_SDF-Mobile Masking.shader │ │ ├── TMP_SDF-Mobile Masking.shader.meta │ │ ├── TMP_SDF-Mobile Overlay.shader │ │ ├── TMP_SDF-Mobile Overlay.shader.meta │ │ ├── TMP_SDF-Mobile SSD.shader │ │ ├── TMP_SDF-Mobile SSD.shader.meta │ │ ├── TMP_SDF-Mobile-2-Pass.shader │ │ ├── TMP_SDF-Mobile-2-Pass.shader.meta │ │ ├── TMP_SDF-Mobile.shader │ │ ├── TMP_SDF-Mobile.shader.meta │ │ ├── TMP_SDF-Surface-Mobile.shader │ │ ├── TMP_SDF-Surface-Mobile.shader.meta │ │ ├── TMP_SDF-Surface.shader │ │ ├── TMP_SDF-Surface.shader.meta │ │ ├── TMP_SDF-URP Lit.shadergraph │ │ ├── TMP_SDF-URP Lit.shadergraph.meta │ │ ├── TMP_SDF-URP Unlit.shadergraph │ │ ├── TMP_SDF-URP Unlit.shadergraph.meta │ │ ├── TMP_SDF.shader │ │ ├── TMP_SDF.shader.meta │ │ ├── TMP_Sprite.shader │ │ ├── TMP_Sprite.shader.meta │ │ ├── TMPro.cginc │ │ ├── TMPro.cginc.meta │ │ ├── TMPro_Mobile.cginc │ │ ├── TMPro_Mobile.cginc.meta │ │ ├── TMPro_Properties.cginc │ │ ├── TMPro_Properties.cginc.meta │ │ ├── TMPro_Surface.cginc │ │ └── TMPro_Surface.cginc.meta │ ├── Sprites.meta │ └── Sprites │ │ ├── EmojiOne Attribution.txt │ │ ├── EmojiOne Attribution.txt.meta │ │ ├── EmojiOne.json │ │ ├── EmojiOne.json.meta │ │ ├── EmojiOne.png │ │ └── EmojiOne.png.meta ├── ThirdParty.meta ├── ThirdParty │ ├── NiceVibrations.meta │ ├── NiceVibrations │ │ ├── Common.meta │ │ ├── Common │ │ │ ├── Plugins.meta │ │ │ ├── Plugins │ │ │ │ ├── Android.meta │ │ │ │ ├── Android │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ └── AndroidManifest.xml.meta │ │ │ │ ├── iOS.meta │ │ │ │ └── iOS │ │ │ │ │ ├── MMNViOSHapticsInterface.m │ │ │ │ │ ├── MMNViOSHapticsInterface.m.meta │ │ │ │ │ ├── Swift.meta │ │ │ │ │ └── Swift │ │ │ │ │ ├── MMNViOSCoreHapticsInterface.mm │ │ │ │ │ ├── MMNViOSCoreHapticsInterface.mm.meta │ │ │ │ │ ├── MMNViOSCoreHapticsInterface.swift │ │ │ │ │ ├── MMNViOSCoreHapticsInterface.swift.meta │ │ │ │ │ ├── UnitySwift-Bridging-Header.h │ │ │ │ │ ├── UnitySwift-Bridging-Header.h.meta │ │ │ │ │ ├── module.modulemap │ │ │ │ │ └── module.modulemap.meta │ │ │ ├── Resources.meta │ │ │ ├── Resources │ │ │ │ ├── MMNVPathDefinition.asset │ │ │ │ └── MMNVPathDefinition.asset.meta │ │ │ ├── Scripts.meta │ │ │ ├── Scripts │ │ │ │ ├── Editor.meta │ │ │ │ ├── Editor │ │ │ │ │ ├── DefineSymbols.meta │ │ │ │ │ ├── DefineSymbols │ │ │ │ │ │ ├── NiceVibrationsDefineSymbols.cs │ │ │ │ │ │ └── NiceVibrationsDefineSymbols.cs.meta │ │ │ │ │ ├── MMNVAndroidWaveFormAssetEditor.cs │ │ │ │ │ ├── MMNVAndroidWaveFormAssetEditor.cs.meta │ │ │ │ │ ├── MMNVAssetPostProcessor.cs │ │ │ │ │ ├── MMNVAssetPostProcessor.cs.meta │ │ │ │ │ ├── MMNVBuildPostProcessor.cs │ │ │ │ │ ├── MMNVBuildPostProcessor.cs.meta │ │ │ │ │ ├── MMNVRumbleWaveFormAssetEditor.cs │ │ │ │ │ ├── MMNVRumbleWaveFormAssetEditor.cs.meta │ │ │ │ │ ├── MoreMountains.NiceVibrations.Editor.asmdef │ │ │ │ │ └── MoreMountains.NiceVibrations.Editor.asmdef.meta │ │ │ │ ├── Haptics.meta │ │ │ │ ├── Haptics │ │ │ │ │ ├── MMNVAHAP.cs │ │ │ │ │ ├── MMNVAHAP.cs.meta │ │ │ │ │ ├── MMNVAltThread.cs │ │ │ │ │ ├── MMNVAltThread.cs.meta │ │ │ │ │ ├── MMNVAndroid.cs │ │ │ │ │ ├── MMNVAndroid.cs.meta │ │ │ │ │ ├── MMNVAndroidWaveFormAsset.cs │ │ │ │ │ ├── MMNVAndroidWaveFormAsset.cs.meta │ │ │ │ │ ├── MMNVEnumCondition.cs │ │ │ │ │ ├── MMNVEnumCondition.cs.meta │ │ │ │ │ ├── MMNVHapticTypes.cs │ │ │ │ │ ├── MMNVHapticTypes.cs.meta │ │ │ │ │ ├── MMNVInspectorButton.cs │ │ │ │ │ ├── MMNVInspectorButton.cs.meta │ │ │ │ │ ├── MMNVPlatform.cs │ │ │ │ │ ├── MMNVPlatform.cs.meta │ │ │ │ │ ├── MMNVRumbleWaveFormAsset.cs │ │ │ │ │ ├── MMNVRumbleWaveFormAsset.cs.meta │ │ │ │ │ ├── MMNViOS.cs │ │ │ │ │ ├── MMNViOS.cs.meta │ │ │ │ │ ├── MMNViOSCoreHaptics.cs │ │ │ │ │ ├── MMNViOSCoreHaptics.cs.meta │ │ │ │ │ ├── MoreMountains.NiceVibrations.Haptics.asmdef │ │ │ │ │ └── MoreMountains.NiceVibrations.Haptics.asmdef.meta │ │ │ │ ├── NiceVibrations.meta │ │ │ │ ├── NiceVibrations │ │ │ │ │ ├── MMNVPath.cs │ │ │ │ │ ├── MMNVPath.cs.meta │ │ │ │ │ ├── MMVibrationManager.cs │ │ │ │ │ ├── MMVibrationManager.cs.meta │ │ │ │ │ ├── MMVibrationManagerTester.cs │ │ │ │ │ ├── MMVibrationManagerTester.cs.meta │ │ │ │ │ ├── MoreMountains.NiceVibrations.asmdef │ │ │ │ │ └── MoreMountains.NiceVibrations.asmdef.meta │ │ │ │ ├── Rumble.meta │ │ │ │ └── Rumble │ │ │ │ │ ├── Editor.meta │ │ │ │ │ ├── Editor │ │ │ │ │ ├── DefineSymbols.meta │ │ │ │ │ ├── DefineSymbols │ │ │ │ │ │ ├── NiceVibrationsRumbleDefineSymbols.cs │ │ │ │ │ │ └── NiceVibrationsRumbleDefineSymbols.cs.meta │ │ │ │ │ ├── MoreMountains.NiceVibrations.Rumble.Editor.asmdef │ │ │ │ │ └── MoreMountains.NiceVibrations.Rumble.Editor.asmdef.meta │ │ │ │ │ ├── Scripts.meta │ │ │ │ │ └── Scripts │ │ │ │ │ ├── MMNVRumble.cs │ │ │ │ │ ├── MMNVRumble.cs.meta │ │ │ │ │ ├── MoreMountains.NiceVibrations.Rumble.asmdef │ │ │ │ │ └── MoreMountains.NiceVibrations.Rumble.asmdef.meta │ │ │ ├── Sounds.meta │ │ │ └── Sounds │ │ │ │ ├── NiceVibrationsContinuous.wav │ │ │ │ ├── NiceVibrationsContinuous.wav.meta │ │ │ │ ├── NiceVibrationsTransient.wav │ │ │ │ └── NiceVibrationsTransient.wav.meta │ │ ├── Demos.meta │ │ ├── Demos │ │ │ ├── DemoAssets.meta │ │ │ ├── DemoAssets │ │ │ │ ├── AHAPPresetsDemo.meta │ │ │ │ ├── AHAPPresetsDemo │ │ │ │ │ ├── AHAP.meta │ │ │ │ │ ├── AHAP │ │ │ │ │ │ ├── AHAPPack1.meta │ │ │ │ │ │ ├── AHAPPack1 │ │ │ │ │ │ │ ├── NVBoing.json │ │ │ │ │ │ │ ├── NVBoing.json.meta │ │ │ │ │ │ │ ├── NVDrums.json │ │ │ │ │ │ │ ├── NVDrums.json.meta │ │ │ │ │ │ │ ├── NVGravel.json │ │ │ │ │ │ │ ├── NVGravel.json.meta │ │ │ │ │ │ │ ├── NVHeartbeats.json │ │ │ │ │ │ │ ├── NVHeartbeats.json.meta │ │ │ │ │ │ │ ├── NVInflate.json │ │ │ │ │ │ │ ├── NVInflate.json.meta │ │ │ │ │ │ │ ├── NVOscillate.json │ │ │ │ │ │ │ ├── NVOscillate.json.meta │ │ │ │ │ │ │ ├── NVRumble.json │ │ │ │ │ │ │ ├── NVRumble.json.meta │ │ │ │ │ │ │ ├── NVSparkle.json │ │ │ │ │ │ │ └── NVSparkle.json.meta │ │ │ │ │ │ ├── AHAPPack2.meta │ │ │ │ │ │ └── AHAPPack2 │ │ │ │ │ │ │ ├── NVCaptainAHAP.json │ │ │ │ │ │ │ ├── NVCaptainAHAP.json.meta │ │ │ │ │ │ │ ├── NVCarillon.json │ │ │ │ │ │ │ ├── NVCarillon.json.meta │ │ │ │ │ │ │ ├── NVDice.json │ │ │ │ │ │ │ ├── NVDice.json.meta │ │ │ │ │ │ │ ├── NVDrumsLoop.json │ │ │ │ │ │ │ ├── NVDrumsLoop.json.meta │ │ │ │ │ │ │ ├── NVGameOver.json │ │ │ │ │ │ │ ├── NVGameOver.json.meta │ │ │ │ │ │ │ ├── NVHeartbeats.json │ │ │ │ │ │ │ ├── NVHeartbeats.json.meta │ │ │ │ │ │ │ ├── NVLaser.json │ │ │ │ │ │ │ ├── NVLaser.json.meta │ │ │ │ │ │ │ ├── NVPowerOff.json │ │ │ │ │ │ │ ├── NVPowerOff.json.meta │ │ │ │ │ │ │ ├── NVReload.json │ │ │ │ │ │ │ ├── NVReload.json.meta │ │ │ │ │ │ │ ├── NVTeleport.json │ │ │ │ │ │ │ └── NVTeleport.json.meta │ │ │ │ │ ├── AndroidWaveforms.meta │ │ │ │ │ ├── AndroidWaveforms │ │ │ │ │ │ ├── NVCarillon.asset │ │ │ │ │ │ ├── NVCarillon.asset.meta │ │ │ │ │ │ ├── NVDice.asset │ │ │ │ │ │ ├── NVDice.asset.meta │ │ │ │ │ │ ├── NVDrumsLoop.asset │ │ │ │ │ │ ├── NVDrumsLoop.asset.meta │ │ │ │ │ │ ├── NVGameOver.asset │ │ │ │ │ │ ├── NVGameOver.asset.meta │ │ │ │ │ │ ├── NVHeartbeats.asset │ │ │ │ │ │ ├── NVHeartbeats.asset.meta │ │ │ │ │ │ ├── NVLaser.asset │ │ │ │ │ │ ├── NVLaser.asset.meta │ │ │ │ │ │ ├── NVPowerOff.asset │ │ │ │ │ │ ├── NVPowerOff.asset.meta │ │ │ │ │ │ ├── NVReload.asset │ │ │ │ │ │ ├── NVReload.asset.meta │ │ │ │ │ │ ├── NVTeleport.asset │ │ │ │ │ │ └── NVTeleport.asset.meta │ │ │ │ │ ├── RumbleWaveforms.meta │ │ │ │ │ ├── RumbleWaveforms │ │ │ │ │ │ ├── NVRCarillon.asset │ │ │ │ │ │ ├── NVRCarillon.asset.meta │ │ │ │ │ │ ├── NVRDice.asset │ │ │ │ │ │ ├── NVRDice.asset.meta │ │ │ │ │ │ ├── NVRDrumsLoop.asset │ │ │ │ │ │ ├── NVRDrumsLoop.asset.meta │ │ │ │ │ │ ├── NVRGameOver.asset │ │ │ │ │ │ ├── NVRGameOver.asset.meta │ │ │ │ │ │ ├── NVRHeartbeats.asset │ │ │ │ │ │ ├── NVRHeartbeats.asset.meta │ │ │ │ │ │ ├── NVRLaser.asset │ │ │ │ │ │ ├── NVRLaser.asset.meta │ │ │ │ │ │ ├── NVRPowerOff.asset │ │ │ │ │ │ ├── NVRPowerOff.asset.meta │ │ │ │ │ │ ├── NVRReload.asset │ │ │ │ │ │ ├── NVRReload.asset.meta │ │ │ │ │ │ ├── NVRTeleport.asset │ │ │ │ │ │ └── NVRTeleport.asset.meta │ │ │ │ │ ├── Scripts.meta │ │ │ │ │ ├── Scripts │ │ │ │ │ │ ├── PresetDemoManager.cs │ │ │ │ │ │ ├── PresetDemoManager.cs.meta │ │ │ │ │ │ ├── PresetDemoRotator.cs │ │ │ │ │ │ └── PresetDemoRotator.cs.meta │ │ │ │ │ ├── Sounds.meta │ │ │ │ │ ├── Sounds │ │ │ │ │ │ ├── NVCarillon.wav │ │ │ │ │ │ ├── NVCarillon.wav.meta │ │ │ │ │ │ ├── NVDice.wav │ │ │ │ │ │ ├── NVDice.wav.meta │ │ │ │ │ │ ├── NVDrumsLoop.wav │ │ │ │ │ │ ├── NVDrumsLoop.wav.meta │ │ │ │ │ │ ├── NVGameOver.wav │ │ │ │ │ │ ├── NVGameOver.wav.meta │ │ │ │ │ │ ├── NVHeartbeats.wav │ │ │ │ │ │ ├── NVHeartbeats.wav.meta │ │ │ │ │ │ ├── NVLaser.wav │ │ │ │ │ │ ├── NVLaser.wav.meta │ │ │ │ │ │ ├── NVPowerOff.wav │ │ │ │ │ │ ├── NVPowerOff.wav.meta │ │ │ │ │ │ ├── NVReload.wav │ │ │ │ │ │ ├── NVReload.wav.meta │ │ │ │ │ │ ├── NVTeleport.wav │ │ │ │ │ │ └── NVTeleport.wav.meta │ │ │ │ │ ├── Sprites.meta │ │ │ │ │ └── Sprites │ │ │ │ │ │ ├── NVPresetsIcons.png │ │ │ │ │ │ └── NVPresetsIcons.png.meta │ │ │ │ ├── BallDemo.meta │ │ │ │ ├── BallDemo │ │ │ │ │ ├── HitAnimation.anim │ │ │ │ │ ├── HitAnimation.anim.meta │ │ │ │ │ ├── IdleAnimation.anim │ │ │ │ │ ├── IdleAnimation.anim.meta │ │ │ │ │ ├── NVBallAnimatorController.controller │ │ │ │ │ ├── NVBallAnimatorController.controller.meta │ │ │ │ │ ├── Physics2DMaterials.meta │ │ │ │ │ ├── Physics2DMaterials │ │ │ │ │ │ ├── NVBouncy.physicsMaterial2D │ │ │ │ │ │ └── NVBouncy.physicsMaterial2D.meta │ │ │ │ │ ├── Scripts.meta │ │ │ │ │ ├── Scripts │ │ │ │ │ │ ├── BallDemoBall.cs │ │ │ │ │ │ ├── BallDemoBall.cs.meta │ │ │ │ │ │ ├── BallDemoManager.cs │ │ │ │ │ │ ├── BallDemoManager.cs.meta │ │ │ │ │ │ ├── BallDemoWall.cs │ │ │ │ │ │ ├── BallDemoWall.cs.meta │ │ │ │ │ │ ├── BallPusher.cs │ │ │ │ │ │ ├── BallPusher.cs.meta │ │ │ │ │ │ ├── BallTouchZone.cs │ │ │ │ │ │ └── BallTouchZone.cs.meta │ │ │ │ │ ├── Sprites.meta │ │ │ │ │ └── Sprites │ │ │ │ │ │ ├── NVBall.png │ │ │ │ │ │ ├── NVBall.png.meta │ │ │ │ │ │ ├── NVBallParticle.mat │ │ │ │ │ │ ├── NVBallParticle.mat.meta │ │ │ │ │ │ ├── NVBallParticle.png │ │ │ │ │ │ └── NVBallParticle.png.meta │ │ │ │ ├── CarDemo.meta │ │ │ │ ├── CarDemo │ │ │ │ │ ├── Scripts.meta │ │ │ │ │ ├── Scripts │ │ │ │ │ │ ├── CarDemoManager.cs │ │ │ │ │ │ ├── CarDemoManager.cs.meta │ │ │ │ │ │ ├── PowerBarElement.cs │ │ │ │ │ │ └── PowerBarElement.cs.meta │ │ │ │ │ ├── Sounds.meta │ │ │ │ │ ├── Sounds │ │ │ │ │ │ ├── NVCarEngine.wav │ │ │ │ │ │ └── NVCarEngine.wav.meta │ │ │ │ │ ├── Sprites.meta │ │ │ │ │ └── Sprites │ │ │ │ │ │ ├── NVCar.png │ │ │ │ │ │ ├── NVCar.png.meta │ │ │ │ │ │ ├── NVCarWheel.png │ │ │ │ │ │ └── NVCarWheel.png.meta │ │ │ │ ├── ContinuousDemo.meta │ │ │ │ ├── ContinuousDemo │ │ │ │ │ ├── Scripts.meta │ │ │ │ │ └── Scripts │ │ │ │ │ │ ├── ContinuousHapticsDemoManager.cs │ │ │ │ │ │ └── ContinuousHapticsDemoManager.cs.meta │ │ │ │ ├── RegularPresetsDemo.meta │ │ │ │ ├── RegularPresetsDemo │ │ │ │ │ ├── RegularPresetsDemoManager.cs │ │ │ │ │ ├── RegularPresetsDemoManager.cs.meta │ │ │ │ │ ├── Sprites.meta │ │ │ │ │ └── Sprites │ │ │ │ │ │ ├── RegularPresetsIcons.png │ │ │ │ │ │ └── RegularPresetsIcons.png.meta │ │ │ │ ├── TransientDemo.meta │ │ │ │ ├── TransientDemo │ │ │ │ │ ├── Scripts.meta │ │ │ │ │ └── Scripts │ │ │ │ │ │ ├── TransientHapticsDemoManager.cs │ │ │ │ │ │ └── TransientHapticsDemoManager.cs.meta │ │ │ │ ├── WobbleDemo.meta │ │ │ │ └── WobbleDemo │ │ │ │ │ ├── AHAP.meta │ │ │ │ │ ├── AHAP │ │ │ │ │ ├── NVSpring.json │ │ │ │ │ └── NVSpring.json.meta │ │ │ │ │ ├── Animations.meta │ │ │ │ │ ├── Animations │ │ │ │ │ ├── WobbleButtonAnimator.controller │ │ │ │ │ ├── WobbleButtonAnimator.controller.meta │ │ │ │ │ ├── WobbleIdle.anim │ │ │ │ │ ├── WobbleIdle.anim.meta │ │ │ │ │ ├── WobbleSpark.anim │ │ │ │ │ └── WobbleSpark.anim.meta │ │ │ │ │ ├── Prefabs.meta │ │ │ │ │ ├── Prefabs │ │ │ │ │ ├── WobbleButton.prefab │ │ │ │ │ └── WobbleButton.prefab.meta │ │ │ │ │ ├── Scripts.meta │ │ │ │ │ ├── Scripts │ │ │ │ │ ├── WobbleButton.cs │ │ │ │ │ ├── WobbleButton.cs.meta │ │ │ │ │ ├── WobbleDemoManager.cs │ │ │ │ │ └── WobbleDemoManager.cs.meta │ │ │ │ │ ├── Sounds.meta │ │ │ │ │ └── Sounds │ │ │ │ │ ├── Spring.wav │ │ │ │ │ └── Spring.wav.meta │ │ │ ├── MoreMountains.NiceVibrations.Demos.asmdef │ │ │ ├── MoreMountains.NiceVibrations.Demos.asmdef.meta │ │ │ ├── NiceVibrationsDemo.unity │ │ │ ├── NiceVibrationsDemo.unity.meta │ │ │ ├── _Common.meta │ │ │ ├── _Common │ │ │ │ ├── Fonts.meta │ │ │ │ ├── Fonts │ │ │ │ │ ├── BIG JOHN.otf │ │ │ │ │ ├── BIG JOHN.otf.meta │ │ │ │ │ ├── RobotoMono-Bold.ttf │ │ │ │ │ ├── RobotoMono-Bold.ttf.meta │ │ │ │ │ ├── RobotoMono-Light.ttf │ │ │ │ │ ├── RobotoMono-Light.ttf.meta │ │ │ │ │ ├── RobotoMono-Medium.ttf │ │ │ │ │ ├── RobotoMono-Medium.ttf.meta │ │ │ │ │ ├── RobotoMono-Regular.ttf │ │ │ │ │ └── RobotoMono-Regular.ttf.meta │ │ │ │ ├── Prefabs.meta │ │ │ │ ├── Prefabs │ │ │ │ │ ├── HorizontalSliderComponent.prefab │ │ │ │ │ ├── HorizontalSliderComponent.prefab.meta │ │ │ │ │ ├── PaginationDot.prefab │ │ │ │ │ ├── PaginationDot.prefab.meta │ │ │ │ │ ├── VerticalProgressBar.prefab │ │ │ │ │ ├── VerticalProgressBar.prefab.meta │ │ │ │ │ ├── VerticalSliderComponent.prefab │ │ │ │ │ └── VerticalSliderComponent.prefab.meta │ │ │ │ ├── Scripts.meta │ │ │ │ ├── Scripts │ │ │ │ │ ├── DemoManager.cs │ │ │ │ │ ├── DemoManager.cs.meta │ │ │ │ │ ├── NiceVibrationsDemoHelpers.cs │ │ │ │ │ ├── NiceVibrationsDemoHelpers.cs.meta │ │ │ │ │ ├── SoundSwitch.cs │ │ │ │ │ ├── SoundSwitch.cs.meta │ │ │ │ │ ├── UI.meta │ │ │ │ │ ├── UI │ │ │ │ │ │ ├── HapticCurve.cs │ │ │ │ │ │ ├── HapticCurve.cs.meta │ │ │ │ │ │ ├── MMFPSCounter.cs │ │ │ │ │ │ ├── MMFPSCounter.cs.meta │ │ │ │ │ │ ├── MMFPSUnlock.cs │ │ │ │ │ │ ├── MMFPSUnlock.cs.meta │ │ │ │ │ │ ├── MMKnob.cs │ │ │ │ │ │ ├── MMKnob.cs.meta │ │ │ │ │ │ ├── MMProgressBar.cs │ │ │ │ │ │ ├── MMProgressBar.cs.meta │ │ │ │ │ │ ├── MMSignal.cs │ │ │ │ │ │ ├── MMSignal.cs.meta │ │ │ │ │ │ ├── MMSpriteReplace.cs │ │ │ │ │ │ ├── MMSpriteReplace.cs.meta │ │ │ │ │ │ ├── MMSwitch.cs │ │ │ │ │ │ ├── MMSwitch.cs.meta │ │ │ │ │ │ ├── MMTouchButton.cs │ │ │ │ │ │ ├── MMTouchButton.cs.meta │ │ │ │ │ │ ├── MMUIShaker.cs │ │ │ │ │ │ ├── MMUIShaker.cs.meta │ │ │ │ │ │ ├── Pagination.cs │ │ │ │ │ │ └── Pagination.cs.meta │ │ │ │ │ ├── V2DemoManager.cs │ │ │ │ │ ├── V2DemoManager.cs.meta │ │ │ │ │ ├── VersionNumber.cs │ │ │ │ │ └── VersionNumber.cs.meta │ │ │ │ ├── Shaders.meta │ │ │ │ ├── Shaders │ │ │ │ │ ├── CurveMaterial.mat │ │ │ │ │ ├── CurveMaterial.mat.meta │ │ │ │ │ ├── MaskedUI.mat │ │ │ │ │ ├── MaskedUI.mat.meta │ │ │ │ │ ├── MaskedUI.shader │ │ │ │ │ └── MaskedUI.shader.meta │ │ │ │ ├── Sprites.meta │ │ │ │ └── Sprites │ │ │ │ │ ├── NV1x1White.png │ │ │ │ │ ├── NV1x1White.png.meta │ │ │ │ │ ├── NV3Cols.png │ │ │ │ │ ├── NV3Cols.png.meta │ │ │ │ │ ├── NV3Dots.png │ │ │ │ │ ├── NV3Dots.png.meta │ │ │ │ │ ├── NV7Dots.png │ │ │ │ │ ├── NV7Dots.png.meta │ │ │ │ │ ├── NVArrow.png │ │ │ │ │ ├── NVArrow.png.meta │ │ │ │ │ ├── NVDottedPattern.png │ │ │ │ │ ├── NVDottedPattern.png.meta │ │ │ │ │ ├── NVKnob.png │ │ │ │ │ ├── NVKnob.png.meta │ │ │ │ │ ├── NVLogoNice.png │ │ │ │ │ ├── NVLogoNice.png.meta │ │ │ │ │ ├── NVLogoVibrations.png │ │ │ │ │ ├── NVLogoVibrations.png.meta │ │ │ │ │ ├── NVPaginationDot.png │ │ │ │ │ ├── NVPaginationDot.png.meta │ │ │ │ │ ├── NVRoundedCorners.png │ │ │ │ │ ├── NVRoundedCorners.png.meta │ │ │ │ │ ├── NVRoundedCornersBig.png │ │ │ │ │ ├── NVRoundedCornersBig.png.meta │ │ │ │ │ ├── NVSwitchBackground.png │ │ │ │ │ ├── NVSwitchBackground.png.meta │ │ │ │ │ ├── NVSwitchIndicator.png │ │ │ │ │ ├── NVSwitchIndicator.png.meta │ │ │ │ │ ├── NVSwitchKnob.png │ │ │ │ │ ├── NVSwitchKnob.png.meta │ │ │ │ │ ├── NVVerticalProgressBar.png │ │ │ │ │ └── NVVerticalProgressBar.png.meta │ │ │ ├── _OLD.meta │ │ │ └── _OLD │ │ │ │ ├── v1Demo.meta │ │ │ │ └── v1Demo │ │ │ │ ├── Scripts.meta │ │ │ │ ├── Scripts │ │ │ │ ├── NiceVibrationsDemoManager.cs │ │ │ │ └── NiceVibrationsDemoManager.cs.meta │ │ │ │ ├── Sprites.meta │ │ │ │ ├── Sprites │ │ │ │ ├── DemoBackground.png │ │ │ │ ├── DemoBackground.png.meta │ │ │ │ ├── MoreMountainsLogo.png │ │ │ │ ├── MoreMountainsLogo.png.meta │ │ │ │ ├── NiceVibrationsIcon.png │ │ │ │ ├── NiceVibrationsIcon.png.meta │ │ │ │ ├── NiceVibrationsLogo.png │ │ │ │ ├── NiceVibrationsLogo.png.meta │ │ │ │ ├── RoundedCorners10Stroke5.png │ │ │ │ ├── RoundedCorners10Stroke5.png.meta │ │ │ │ ├── icon-nice-vibrations.png │ │ │ │ └── icon-nice-vibrations.png.meta │ │ │ │ ├── v1Demo.unity │ │ │ │ └── v1Demo.unity.meta │ │ ├── license.txt │ │ ├── license.txt.meta │ │ ├── readme.txt │ │ └── readme.txt.meta │ ├── StompyRobot.meta │ └── StompyRobot │ │ ├── SRDebugger.meta │ │ ├── SRDebugger │ │ ├── Editor.meta │ │ ├── Editor │ │ │ ├── BG_Dark.png │ │ │ ├── BG_Dark.png.meta │ │ │ ├── BG_Light.png │ │ │ ├── BG_Light.png.meta │ │ │ ├── DemoSprite.png │ │ │ ├── DemoSprite.png.meta │ │ │ ├── Icons.meta │ │ │ ├── Icons │ │ │ │ ├── Dark.meta │ │ │ │ ├── Dark │ │ │ │ │ ├── console-25.png │ │ │ │ │ ├── console-25.png.meta │ │ │ │ │ ├── options-25.png │ │ │ │ │ ├── options-25.png.meta │ │ │ │ │ ├── profiler-25.png │ │ │ │ │ └── profiler-25.png.meta │ │ │ │ ├── Light.meta │ │ │ │ └── Light │ │ │ │ │ ├── console-25.png │ │ │ │ │ ├── console-25.png.meta │ │ │ │ │ ├── options-25.png │ │ │ │ │ ├── options-25.png.meta │ │ │ │ │ ├── profiler-25.png │ │ │ │ │ └── profiler-25.png.meta │ │ │ ├── Logo_DarkBG.png │ │ │ ├── Logo_DarkBG.png.meta │ │ │ ├── Logo_LightBG.png │ │ │ ├── Logo_LightBG.png.meta │ │ │ ├── WelcomeLogo_DarkBG.png │ │ │ ├── WelcomeLogo_DarkBG.png.meta │ │ │ ├── WelcomeLogo_LightBG.png │ │ │ └── WelcomeLogo_LightBG.png.meta │ │ ├── PlaymakerIntegration.unitypackage │ │ ├── PlaymakerIntegration.unitypackage.meta │ │ ├── README.txt │ │ ├── README.txt.meta │ │ ├── Resources.meta │ │ ├── Resources │ │ │ ├── SRDebugger.meta │ │ │ └── SRDebugger │ │ │ │ ├── UI.meta │ │ │ │ └── UI │ │ │ │ ├── Prefabs.meta │ │ │ │ └── Prefabs │ │ │ │ ├── BugReportPopover.prefab │ │ │ │ ├── BugReportPopover.prefab.meta │ │ │ │ ├── BugReportSheet.prefab │ │ │ │ ├── BugReportSheet.prefab.meta │ │ │ │ ├── DebugPanel.prefab │ │ │ │ ├── DebugPanel.prefab.meta │ │ │ │ ├── DockConsole.prefab │ │ │ │ ├── DockConsole.prefab.meta │ │ │ │ ├── Options.meta │ │ │ │ ├── Options │ │ │ │ ├── ActionOption.prefab │ │ │ │ ├── ActionOption.prefab.meta │ │ │ │ ├── BoolOption.prefab │ │ │ │ ├── BoolOption.prefab.meta │ │ │ │ ├── EnumOption.prefab │ │ │ │ ├── EnumOption.prefab.meta │ │ │ │ ├── NumberOption.prefab │ │ │ │ ├── NumberOption.prefab.meta │ │ │ │ ├── ReadOnlyOption.prefab │ │ │ │ ├── ReadOnlyOption.prefab.meta │ │ │ │ ├── StringOption.prefab │ │ │ │ └── StringOption.prefab.meta │ │ │ │ ├── PinEntry.prefab │ │ │ │ ├── PinEntry.prefab.meta │ │ │ │ ├── PinnedUI.prefab │ │ │ │ ├── PinnedUI.prefab.meta │ │ │ │ ├── Tabs.meta │ │ │ │ ├── Tabs │ │ │ │ ├── BugReporter.prefab │ │ │ │ ├── BugReporter.prefab.meta │ │ │ │ ├── Console.prefab │ │ │ │ ├── Console.prefab.meta │ │ │ │ ├── Options.prefab │ │ │ │ ├── Options.prefab.meta │ │ │ │ ├── Profiler.prefab │ │ │ │ ├── Profiler.prefab.meta │ │ │ │ ├── System.prefab │ │ │ │ └── System.prefab.meta │ │ │ │ ├── Trigger.prefab │ │ │ │ └── Trigger.prefab.meta │ │ ├── Scenes.meta │ │ ├── Scenes │ │ │ ├── Sample.unity │ │ │ └── Sample.unity.meta │ │ ├── Scripts.meta │ │ ├── Scripts │ │ │ ├── AutoInitialize.cs │ │ │ ├── AutoInitialize.cs.meta │ │ │ ├── Editor.meta │ │ │ ├── Editor │ │ │ │ ├── ApiSignup.cs │ │ │ │ ├── ApiSignup.cs.meta │ │ │ │ ├── ApiSignupWindow.cs │ │ │ │ ├── ApiSignupWindow.cs.meta │ │ │ │ ├── IntegrityChecking.cs │ │ │ │ ├── IntegrityChecking.cs.meta │ │ │ │ ├── Migrations.cs │ │ │ │ ├── Migrations.cs.meta │ │ │ │ ├── ProfilerCameraListenerEditor.cs │ │ │ │ ├── ProfilerCameraListenerEditor.cs.meta │ │ │ │ ├── SRDebugEditor.Compiler.cs │ │ │ │ ├── SRDebugEditor.Compiler.cs.meta │ │ │ │ ├── SRDebugEditor.Resources.cs │ │ │ │ ├── SRDebugEditor.Resources.cs.meta │ │ │ │ ├── SRDebugEditor.cs │ │ │ │ ├── SRDebugEditor.cs.meta │ │ │ │ ├── SRDebugEditorPaths.cs │ │ │ │ ├── SRDebugEditorPaths.cs.meta │ │ │ │ ├── SRDebugEditorStrings.cs │ │ │ │ ├── SRDebugEditorStrings.cs.meta │ │ │ │ ├── SRIntegrityCheckWindow.cs │ │ │ │ ├── SRIntegrityCheckWindow.cs.meta │ │ │ │ ├── SRInternalEditorUtil.cs │ │ │ │ ├── SRInternalEditorUtil.cs.meta │ │ │ │ ├── SROptionsWindow.cs │ │ │ │ ├── SROptionsWindow.cs.meta │ │ │ │ ├── SettingsEditor.cs │ │ │ │ ├── SettingsEditor.cs.meta │ │ │ │ ├── SettingsWindow.cs │ │ │ │ ├── SettingsWindow.cs.meta │ │ │ │ ├── StompyRobot.SRDebugger.Editor.asmdef │ │ │ │ ├── StompyRobot.SRDebugger.Editor.asmdef.meta │ │ │ │ ├── WelcomeWindow.cs │ │ │ │ └── WelcomeWindow.cs.meta │ │ │ ├── IOptionContainer.cs │ │ │ ├── IOptionContainer.cs.meta │ │ │ ├── Internal.meta │ │ │ ├── Internal │ │ │ │ ├── Api.cs │ │ │ │ ├── Api.cs.meta │ │ │ │ ├── ApiUtil.cs │ │ │ │ ├── ApiUtil.cs.meta │ │ │ │ ├── BugReportApi.cs │ │ │ │ ├── BugReportApi.cs.meta │ │ │ │ ├── BugReportScreenshotUtil.cs │ │ │ │ ├── BugReportScreenshotUtil.cs.meta │ │ │ │ ├── CircularBuffer.cs │ │ │ │ ├── CircularBuffer.cs.meta │ │ │ │ ├── EditorUtil.cs │ │ │ │ ├── EditorUtil.cs.meta │ │ │ │ ├── InternalOptionsRegistry.cs │ │ │ │ ├── InternalOptionsRegistry.cs.meta │ │ │ │ ├── OptionControlFactory.cs │ │ │ │ ├── OptionControlFactory.cs.meta │ │ │ │ ├── OptionDefinition.cs │ │ │ │ ├── OptionDefinition.cs.meta │ │ │ │ ├── Paths.cs │ │ │ │ ├── Paths.cs.meta │ │ │ │ ├── SRScriptRecompileHelper.cs │ │ │ │ ├── SRScriptRecompileHelper.cs.meta │ │ │ │ ├── Service.cs │ │ │ │ ├── Service.cs.meta │ │ │ │ ├── Strings.cs │ │ │ │ ├── Strings.cs.meta │ │ │ │ ├── Util.cs │ │ │ │ └── Util.cs.meta │ │ │ ├── Profiler.meta │ │ │ ├── Profiler │ │ │ │ ├── ProfilerCameraListener.cs │ │ │ │ ├── ProfilerCameraListener.cs.meta │ │ │ │ ├── ProfilerLateUpdateListener.cs │ │ │ │ ├── ProfilerLateUpdateListener.cs.meta │ │ │ │ ├── ProfilerServiceImpl.cs │ │ │ │ ├── ProfilerServiceImpl.cs.meta │ │ │ │ ├── SRPProfilerService.cs │ │ │ │ └── SRPProfilerService.cs.meta │ │ │ ├── SRDebug.cs │ │ │ ├── SRDebug.cs.meta │ │ │ ├── SRDebuggerInit.cs │ │ │ ├── SRDebuggerInit.cs.meta │ │ │ ├── SROptions.Attributes.cs │ │ │ ├── SROptions.Attributes.cs.meta │ │ │ ├── SROptions.Test.cs │ │ │ ├── SROptions.Test.cs.meta │ │ │ ├── SROptions.cs │ │ │ ├── SROptions.cs.meta │ │ │ ├── Services.meta │ │ │ ├── Services │ │ │ │ ├── IBugReportService.cs │ │ │ │ ├── IBugReportService.cs.meta │ │ │ │ ├── IConsoleService.cs │ │ │ │ ├── IConsoleService.cs.meta │ │ │ │ ├── IDebugCameraService.cs │ │ │ │ ├── IDebugCameraService.cs.meta │ │ │ │ ├── IDebugPanelService.cs │ │ │ │ ├── IDebugPanelService.cs.meta │ │ │ │ ├── IDebugService.cs │ │ │ │ ├── IDebugService.cs.meta │ │ │ │ ├── IDebugTriggerService.cs │ │ │ │ ├── IDebugTriggerService.cs.meta │ │ │ │ ├── IDockConsoleService.cs │ │ │ │ ├── IDockConsoleService.cs.meta │ │ │ │ ├── IOptionsService.cs │ │ │ │ ├── IOptionsService.cs.meta │ │ │ │ ├── IPinEntryService.cs │ │ │ │ ├── IPinEntryService.cs.meta │ │ │ │ ├── IPinnedOptionsService.cs │ │ │ │ ├── IPinnedOptionsService.cs.meta │ │ │ │ ├── IProfilerService.cs │ │ │ │ ├── IProfilerService.cs.meta │ │ │ │ ├── ISystemInformationService.cs │ │ │ │ ├── ISystemInformationService.cs.meta │ │ │ │ ├── Implementation.meta │ │ │ │ ├── Implementation │ │ │ │ │ ├── BugReportApiService.cs │ │ │ │ │ ├── BugReportApiService.cs.meta │ │ │ │ │ ├── BugReportPopoverService.cs │ │ │ │ │ ├── BugReportPopoverService.cs.meta │ │ │ │ │ ├── DebugCameraServiceImpl.cs │ │ │ │ │ ├── DebugCameraServiceImpl.cs.meta │ │ │ │ │ ├── DebugPanelServiceImpl.cs │ │ │ │ │ ├── DebugPanelServiceImpl.cs.meta │ │ │ │ │ ├── DebugTriggerImpl.cs │ │ │ │ │ ├── DebugTriggerImpl.cs.meta │ │ │ │ │ ├── DockConsoleServiceImpl.cs │ │ │ │ │ ├── DockConsoleServiceImpl.cs.meta │ │ │ │ │ ├── KeyboardShortcutListenerService.cs │ │ │ │ │ ├── KeyboardShortcutListenerService.cs.meta │ │ │ │ │ ├── OptionsServiceImpl.ReflectionOptionContainer.cs │ │ │ │ │ ├── OptionsServiceImpl.ReflectionOptionContainer.cs.meta │ │ │ │ │ ├── OptionsServiceImpl.cs │ │ │ │ │ ├── OptionsServiceImpl.cs.meta │ │ │ │ │ ├── PinEntryServiceImpl.cs │ │ │ │ │ ├── PinEntryServiceImpl.cs.meta │ │ │ │ │ ├── PinnedUIServiceImpl.cs │ │ │ │ │ ├── PinnedUIServiceImpl.cs.meta │ │ │ │ │ ├── SRDebugService.cs │ │ │ │ │ ├── SRDebugService.cs.meta │ │ │ │ │ ├── StandardConsoleService.cs │ │ │ │ │ ├── StandardConsoleService.cs.meta │ │ │ │ │ ├── SystemInformationService.cs │ │ │ │ │ └── SystemInformationService.cs.meta │ │ │ │ ├── ServiceSelectors.cs │ │ │ │ └── ServiceSelectors.cs.meta │ │ │ ├── Settings.cs │ │ │ ├── Settings.cs.meta │ │ │ ├── UI.meta │ │ │ ├── UI │ │ │ │ ├── Controls.meta │ │ │ │ ├── Controls │ │ │ │ │ ├── ConsoleEntryView.cs │ │ │ │ │ ├── ConsoleEntryView.cs.meta │ │ │ │ │ ├── ConsoleLogControl.cs │ │ │ │ │ ├── ConsoleLogControl.cs.meta │ │ │ │ │ ├── Data.meta │ │ │ │ │ ├── Data │ │ │ │ │ │ ├── ActionControl.cs │ │ │ │ │ │ ├── ActionControl.cs.meta │ │ │ │ │ │ ├── BoolControl.cs │ │ │ │ │ │ ├── BoolControl.cs.meta │ │ │ │ │ │ ├── DataBoundControl.cs │ │ │ │ │ │ ├── DataBoundControl.cs.meta │ │ │ │ │ │ ├── EnumControl.cs │ │ │ │ │ │ ├── EnumControl.cs.meta │ │ │ │ │ │ ├── NumberControl.cs │ │ │ │ │ │ ├── NumberControl.cs.meta │ │ │ │ │ │ ├── OptionsControlBase.cs │ │ │ │ │ │ ├── OptionsControlBase.cs.meta │ │ │ │ │ │ ├── ReadOnlyControl.cs │ │ │ │ │ │ ├── ReadOnlyControl.cs.meta │ │ │ │ │ │ ├── StringControl.cs │ │ │ │ │ │ └── StringControl.cs.meta │ │ │ │ │ ├── InfoBlock.cs │ │ │ │ │ ├── InfoBlock.cs.meta │ │ │ │ │ ├── MultiTapButton.cs │ │ │ │ │ ├── MultiTapButton.cs.meta │ │ │ │ │ ├── PinEntryControl.cs │ │ │ │ │ ├── PinEntryControl.cs.meta │ │ │ │ │ ├── Profiler.meta │ │ │ │ │ ├── Profiler │ │ │ │ │ │ ├── ProfilerFPSLabel.cs │ │ │ │ │ │ ├── ProfilerFPSLabel.cs.meta │ │ │ │ │ │ ├── ProfilerMemoryBlock.cs │ │ │ │ │ │ ├── ProfilerMemoryBlock.cs.meta │ │ │ │ │ │ ├── ProfilerMonoBlock.cs │ │ │ │ │ │ └── ProfilerMonoBlock.cs.meta │ │ │ │ │ ├── ProfilerEnableControl.cs │ │ │ │ │ ├── ProfilerEnableControl.cs.meta │ │ │ │ │ ├── ProfilerGraphAxisLabel.cs │ │ │ │ │ ├── ProfilerGraphAxisLabel.cs.meta │ │ │ │ │ ├── ProfilerGraphControl.cs │ │ │ │ │ ├── ProfilerGraphControl.cs.meta │ │ │ │ │ ├── SRTabButton.cs │ │ │ │ │ └── SRTabButton.cs.meta │ │ │ │ ├── DebugPanelRoot.cs │ │ │ │ ├── DebugPanelRoot.cs.meta │ │ │ │ ├── DebuggerTabController.cs │ │ │ │ ├── DebuggerTabController.cs.meta │ │ │ │ ├── MobileMenuController.cs │ │ │ │ ├── MobileMenuController.cs.meta │ │ │ │ ├── Other.meta │ │ │ │ ├── Other │ │ │ │ │ ├── BugReportPopoverRoot.cs │ │ │ │ │ ├── BugReportPopoverRoot.cs.meta │ │ │ │ │ ├── BugReportSheetController.cs │ │ │ │ │ ├── BugReportSheetController.cs.meta │ │ │ │ │ ├── CategoryGroup.cs │ │ │ │ │ ├── CategoryGroup.cs.meta │ │ │ │ │ ├── ConfigureCanvasFromSettings.cs │ │ │ │ │ ├── ConfigureCanvasFromSettings.cs.meta │ │ │ │ │ ├── ConsoleTabQuickViewControl.cs │ │ │ │ │ ├── ConsoleTabQuickViewControl.cs.meta │ │ │ │ │ ├── DebugPanelBackgroundBehaviour.cs │ │ │ │ │ ├── DebugPanelBackgroundBehaviour.cs.meta │ │ │ │ │ ├── DockConsoleController.cs │ │ │ │ │ ├── DockConsoleController.cs.meta │ │ │ │ │ ├── DockConsoleRoot.cs │ │ │ │ │ ├── DockConsoleRoot.cs.meta │ │ │ │ │ ├── ErrorNotifier.cs │ │ │ │ │ ├── ErrorNotifier.cs.meta │ │ │ │ │ ├── FloatOverElement.cs │ │ │ │ │ ├── FloatOverElement.cs.meta │ │ │ │ │ ├── HandleManager.cs │ │ │ │ │ ├── HandleManager.cs.meta │ │ │ │ │ ├── IEnableTab.cs │ │ │ │ │ ├── IEnableTab.cs.meta │ │ │ │ │ ├── LoadingSpinnerBehaviour.cs │ │ │ │ │ ├── LoadingSpinnerBehaviour.cs.meta │ │ │ │ │ ├── PinnedUIRoot.cs │ │ │ │ │ ├── PinnedUIRoot.cs.meta │ │ │ │ │ ├── SRTab.cs │ │ │ │ │ ├── SRTab.cs.meta │ │ │ │ │ ├── SRTabController.cs │ │ │ │ │ ├── SRTabController.cs.meta │ │ │ │ │ ├── SafeAreaSizer.cs │ │ │ │ │ ├── SafeAreaSizer.cs.meta │ │ │ │ │ ├── ScrollRectPatch.cs │ │ │ │ │ ├── ScrollRectPatch.cs.meta │ │ │ │ │ ├── ScrollSettingsBehaviour.cs │ │ │ │ │ ├── ScrollSettingsBehaviour.cs.meta │ │ │ │ │ ├── SetLayerFromSettings.cs │ │ │ │ │ ├── SetLayerFromSettings.cs.meta │ │ │ │ │ ├── TriggerRoot.cs │ │ │ │ │ ├── TriggerRoot.cs.meta │ │ │ │ │ ├── VersionTextBehaviour.cs │ │ │ │ │ └── VersionTextBehaviour.cs.meta │ │ │ │ ├── Tabs.meta │ │ │ │ └── Tabs │ │ │ │ │ ├── BugReportTabController.cs │ │ │ │ │ ├── BugReportTabController.cs.meta │ │ │ │ │ ├── ConsoleTabController.cs │ │ │ │ │ ├── ConsoleTabController.cs.meta │ │ │ │ │ ├── InfoTabController.cs │ │ │ │ │ ├── InfoTabController.cs.meta │ │ │ │ │ ├── OptionsTabController.cs │ │ │ │ │ ├── OptionsTabController.cs.meta │ │ │ │ │ ├── ProfilerTabController.cs │ │ │ │ │ └── ProfilerTabController.cs.meta │ │ │ ├── Version.cs │ │ │ └── Version.cs.meta │ │ ├── StompyRobot.SRDebugger.asmdef │ │ ├── StompyRobot.SRDebugger.asmdef.meta │ │ ├── UI.meta │ │ ├── UI │ │ │ ├── Fonts.meta │ │ │ ├── Fonts │ │ │ │ ├── FONT LICENSE.txt │ │ │ │ ├── FONT LICENSE.txt.meta │ │ │ │ ├── Orbitron Black.otf │ │ │ │ ├── Orbitron Black.otf.meta │ │ │ │ ├── Orbitron Black_LICENSE.txt │ │ │ │ ├── Orbitron Black_LICENSE.txt.meta │ │ │ │ ├── Orbitron Bold.otf │ │ │ │ ├── Orbitron Bold.otf.meta │ │ │ │ ├── Orbitron Bold_LICENSE.txt │ │ │ │ ├── Orbitron Bold_LICENSE.txt.meta │ │ │ │ ├── Orbitron Light.otf │ │ │ │ ├── Orbitron Light.otf.meta │ │ │ │ ├── Orbitron Light_LICENSE.txt │ │ │ │ ├── Orbitron Light_LICENSE.txt.meta │ │ │ │ ├── Orbitron Medium.otf │ │ │ │ ├── Orbitron Medium.otf.meta │ │ │ │ ├── Orbitron Medium_LICENSE.txt │ │ │ │ ├── Orbitron Medium_LICENSE.txt.meta │ │ │ │ ├── SourceCodePro-Regular.otf │ │ │ │ ├── SourceCodePro-Regular.otf.meta │ │ │ │ ├── SourceCodePro-Regular_LICENSE.txt │ │ │ │ └── SourceCodePro-Regular_LICENSE.txt.meta │ │ │ ├── Prefabs.meta │ │ │ ├── Prefabs │ │ │ │ ├── AboutTab.prefab │ │ │ │ ├── AboutTab.prefab.meta │ │ │ │ ├── Console.meta │ │ │ │ ├── Console │ │ │ │ │ ├── Item.prefab │ │ │ │ │ └── Item.prefab.meta │ │ │ │ ├── InfoBlock.prefab │ │ │ │ ├── InfoBlock.prefab.meta │ │ │ │ ├── Options.meta │ │ │ │ ├── Options │ │ │ │ │ ├── Category.prefab │ │ │ │ │ └── Category.prefab.meta │ │ │ │ ├── SR_ModalPopup.prefab │ │ │ │ ├── SR_ModalPopup.prefab.meta │ │ │ │ ├── SideBar.meta │ │ │ │ └── SideBar │ │ │ │ │ ├── ConsoleTabButtonContent.prefab │ │ │ │ │ ├── ConsoleTabButtonContent.prefab.meta │ │ │ │ │ ├── Tab.prefab │ │ │ │ │ └── Tab.prefab.meta │ │ │ ├── Sprites.meta │ │ │ ├── Sprites │ │ │ │ ├── Default.meta │ │ │ │ └── Default │ │ │ │ │ ├── Alert.PSD │ │ │ │ │ ├── Alert.PSD.meta │ │ │ │ │ ├── BG.meta │ │ │ │ │ ├── BG │ │ │ │ │ ├── footer_lodyas.png │ │ │ │ │ └── footer_lodyas.png.meta │ │ │ │ │ ├── Circle.psd │ │ │ │ │ ├── Circle.psd.meta │ │ │ │ │ ├── Icons.meta │ │ │ │ │ ├── Icons │ │ │ │ │ ├── Filter-50.png │ │ │ │ │ ├── Filter-50.png.meta │ │ │ │ │ ├── clipboard-50.png │ │ │ │ │ ├── clipboard-50.png.meta │ │ │ │ │ ├── close-50.png │ │ │ │ │ ├── close-50.png.meta │ │ │ │ │ ├── collapse-32.png │ │ │ │ │ ├── collapse-32.png.meta │ │ │ │ │ ├── console-64.png │ │ │ │ │ ├── console-64.png.meta │ │ │ │ │ ├── down-50.png │ │ │ │ │ ├── down-50.png.meta │ │ │ │ │ ├── feedback-64.png │ │ │ │ │ ├── feedback-64.png.meta │ │ │ │ │ ├── heart_monitor-64.png │ │ │ │ │ ├── heart_monitor-64.png.meta │ │ │ │ │ ├── info-64.png │ │ │ │ │ ├── info-64.png.meta │ │ │ │ │ ├── menu-25.png │ │ │ │ │ ├── menu-25.png.meta │ │ │ │ │ ├── menu-32.png │ │ │ │ │ ├── menu-32.png.meta │ │ │ │ │ ├── menu-50.png │ │ │ │ │ ├── menu-50.png.meta │ │ │ │ │ ├── message-64.png │ │ │ │ │ ├── message-64.png.meta │ │ │ │ │ ├── open-dropdown-50.png │ │ │ │ │ ├── open-dropdown-50.png.meta │ │ │ │ │ ├── outline-64.png │ │ │ │ │ ├── outline-64.png.meta │ │ │ │ │ ├── pin-50.png │ │ │ │ │ ├── pin-50.png.meta │ │ │ │ │ ├── pin-64.png │ │ │ │ │ ├── pin-64.png.meta │ │ │ │ │ ├── refresh-50.png │ │ │ │ │ ├── refresh-50.png.meta │ │ │ │ │ ├── spider-64.png │ │ │ │ │ ├── spider-64.png.meta │ │ │ │ │ ├── stompy_white_128.png │ │ │ │ │ ├── stompy_white_128.png.meta │ │ │ │ │ ├── trash2-32.png │ │ │ │ │ ├── trash2-32.png.meta │ │ │ │ │ ├── trash2-50.png │ │ │ │ │ └── trash2-50.png.meta │ │ │ │ │ ├── Logo.psd │ │ │ │ │ ├── Logo.psd.meta │ │ │ │ │ ├── Logo@2x.psd │ │ │ │ │ ├── Logo@2x.psd.meta │ │ │ │ │ ├── Pin.meta │ │ │ │ │ ├── Pin │ │ │ │ │ ├── NumberButton_Fill@2x.psd │ │ │ │ │ ├── NumberButton_Fill@2x.psd.meta │ │ │ │ │ ├── NumberButton_Outline@2x.psd │ │ │ │ │ ├── NumberButton_Outline@2x.psd.meta │ │ │ │ │ ├── PinDot_Fill@2x.psd │ │ │ │ │ ├── PinDot_Fill@2x.psd.meta │ │ │ │ │ ├── PinDot_Outline@2x.psd │ │ │ │ │ └── PinDot_Outline@2x.psd.meta │ │ │ │ │ ├── RoundedCorner-2px.psd │ │ │ │ │ ├── RoundedCorner-2px.psd.meta │ │ │ │ │ ├── RoundedCorner-2px@2x.psd │ │ │ │ │ ├── RoundedCorner-2px@2x.psd.meta │ │ │ │ │ ├── RoundedCorner-5px.psd │ │ │ │ │ ├── RoundedCorner-5px.psd.meta │ │ │ │ │ ├── RoundedCorner-5px@2x.psd │ │ │ │ │ ├── RoundedCorner-5px@2x.psd.meta │ │ │ │ │ ├── loading@2x.png │ │ │ │ │ └── loading@2x.png.meta │ │ │ ├── Styles.meta │ │ │ └── Styles │ │ │ │ ├── Default.asset │ │ │ │ ├── Default.asset.meta │ │ │ │ ├── DefaultConsoleAltRow.asset │ │ │ │ ├── DefaultConsoleAltRow.asset.meta │ │ │ │ ├── DefaultConsoleSelectedRow.asset │ │ │ │ ├── DefaultConsoleSelectedRow.asset.meta │ │ │ │ ├── DefaultTabActive.asset │ │ │ │ └── DefaultTabActive.asset.meta │ │ ├── usr.meta │ │ └── usr │ │ │ ├── Resources.meta │ │ │ └── Resources │ │ │ ├── SRDebugger.meta │ │ │ └── SRDebugger │ │ │ ├── Settings.asset │ │ │ └── Settings.asset.meta │ │ ├── SRF.meta │ │ ├── SRF │ │ ├── External.meta │ │ ├── External │ │ │ ├── Jetbrains.Annotations.cs │ │ │ ├── Jetbrains.Annotations.cs.meta │ │ │ ├── MiniJSON.cs │ │ │ └── MiniJSON.cs.meta │ │ ├── Internal.meta │ │ ├── Internal │ │ │ ├── ComponentMenuPaths.cs │ │ │ └── ComponentMenuPaths.cs.meta │ │ ├── LICENSE │ │ ├── LICENSE.meta │ │ ├── README.md │ │ ├── README.md.meta │ │ ├── Scripts.meta │ │ ├── Scripts │ │ │ ├── Collections.meta │ │ │ ├── Collections │ │ │ │ ├── SRList.cs │ │ │ │ └── SRList.cs.meta │ │ │ ├── Components.meta │ │ │ ├── Components │ │ │ │ ├── SRAutoSingleton.cs │ │ │ │ ├── SRAutoSingleton.cs.meta │ │ │ │ ├── SRMonoBehaviour.cs │ │ │ │ ├── SRMonoBehaviour.cs.meta │ │ │ │ ├── SRMonoBehaviourEx.cs │ │ │ │ ├── SRMonoBehaviourEx.cs.meta │ │ │ │ ├── SRSingleton.cs │ │ │ │ └── SRSingleton.cs.meta │ │ │ ├── Coroutines.cs │ │ │ ├── Coroutines.cs.meta │ │ │ ├── Extensions.meta │ │ │ ├── Extensions │ │ │ │ ├── FloatExtensions.cs │ │ │ │ ├── FloatExtensions.cs.meta │ │ │ │ ├── GameObjectExtensions.cs │ │ │ │ ├── GameObjectExtensions.cs.meta │ │ │ │ ├── IListExtensions.cs │ │ │ │ ├── IListExtensions.cs.meta │ │ │ │ ├── NetFxExtensions.cs │ │ │ │ ├── NetFxExtensions.cs.meta │ │ │ │ ├── StringExtensions.cs │ │ │ │ ├── StringExtensions.cs.meta │ │ │ │ ├── TransformExtensions.cs │ │ │ │ └── TransformExtensions.cs.meta │ │ │ ├── Helpers.meta │ │ │ ├── Helpers │ │ │ │ ├── AssetUtil.cs │ │ │ │ ├── AssetUtil.cs.meta │ │ │ │ ├── Hierarchy.cs │ │ │ │ ├── Hierarchy.cs.meta │ │ │ │ ├── MethodReference.cs │ │ │ │ ├── MethodReference.cs.meta │ │ │ │ ├── PropertyReference.cs │ │ │ │ ├── PropertyReference.cs.meta │ │ │ │ ├── SRDebugUtil.cs │ │ │ │ ├── SRDebugUtil.cs.meta │ │ │ │ ├── SRFileUtil.cs │ │ │ │ ├── SRFileUtil.cs.meta │ │ │ │ ├── SRInstantiate.cs │ │ │ │ ├── SRInstantiate.cs.meta │ │ │ │ ├── SRMath.Tweening.Functions.cs │ │ │ │ ├── SRMath.Tweening.Functions.cs.meta │ │ │ │ ├── SRMath.Tweening.cs │ │ │ │ ├── SRMath.Tweening.cs.meta │ │ │ │ ├── SRMath.cs │ │ │ │ ├── SRMath.cs.meta │ │ │ │ ├── SRReflection.cs │ │ │ │ └── SRReflection.cs.meta │ │ │ ├── Service.meta │ │ │ ├── Service │ │ │ │ ├── Attributes.cs │ │ │ │ ├── Attributes.cs.meta │ │ │ │ ├── IAsyncService.cs │ │ │ │ ├── IAsyncService.cs.meta │ │ │ │ ├── SRDependencyServiceBase.cs │ │ │ │ ├── SRDependencyServiceBase.cs.meta │ │ │ │ ├── SRSceneServiceBase.cs │ │ │ │ ├── SRSceneServiceBase.cs.meta │ │ │ │ ├── SRServiceBase.cs │ │ │ │ ├── SRServiceBase.cs.meta │ │ │ │ ├── SRServiceManager.cs │ │ │ │ └── SRServiceManager.cs.meta │ │ │ ├── UI.meta │ │ │ └── UI │ │ │ │ ├── ContentFitText.cs │ │ │ │ ├── ContentFitText.cs.meta │ │ │ │ ├── CopyLayoutElement.cs │ │ │ │ ├── CopyLayoutElement.cs.meta │ │ │ │ ├── CopyPreferredSize.cs │ │ │ │ ├── CopyPreferredSize.cs.meta │ │ │ │ ├── CopySizeIntoLayoutElement.cs │ │ │ │ ├── CopySizeIntoLayoutElement.cs.meta │ │ │ │ ├── DragHandle.cs │ │ │ │ ├── DragHandle.cs.meta │ │ │ │ ├── Editor.meta │ │ │ │ ├── Editor │ │ │ │ ├── CopyLayoutElementEditor.cs │ │ │ │ ├── CopyLayoutElementEditor.cs.meta │ │ │ │ ├── CopyPreferredSizeEditor.cs │ │ │ │ ├── CopyPreferredSizeEditor.cs.meta │ │ │ │ ├── LongPressButtonEditor.cs │ │ │ │ ├── LongPressButtonEditor.cs.meta │ │ │ │ ├── SRNumberButtonEditor.cs │ │ │ │ ├── SRNumberButtonEditor.cs.meta │ │ │ │ ├── StompyRobot.SRF.Editor.asmdef │ │ │ │ ├── StompyRobot.SRF.Editor.asmdef.meta │ │ │ │ ├── StyleComponentEditor.cs │ │ │ │ ├── StyleComponentEditor.cs.meta │ │ │ │ ├── StyleSheetEditor.cs │ │ │ │ └── StyleSheetEditor.cs.meta │ │ │ │ ├── FlashGraphic.cs │ │ │ │ ├── FlashGraphic.cs.meta │ │ │ │ ├── InheritColour.cs │ │ │ │ ├── InheritColour.cs.meta │ │ │ │ ├── Layout.meta │ │ │ │ ├── Layout │ │ │ │ ├── FlowLayoutGroup.cs │ │ │ │ ├── FlowLayoutGroup.cs.meta │ │ │ │ ├── VirtualVerticalLayoutGroup.cs │ │ │ │ └── VirtualVerticalLayoutGroup.cs.meta │ │ │ │ ├── LongPressButton.cs │ │ │ │ ├── LongPressButton.cs.meta │ │ │ │ ├── ResponsiveBase.cs │ │ │ │ ├── ResponsiveBase.cs.meta │ │ │ │ ├── ResponsiveEnable.cs │ │ │ │ ├── ResponsiveEnable.cs.meta │ │ │ │ ├── ResponsiveResize.cs │ │ │ │ ├── ResponsiveResize.cs.meta │ │ │ │ ├── SRNumberButton.cs │ │ │ │ ├── SRNumberButton.cs.meta │ │ │ │ ├── SRNumberSpinner.cs │ │ │ │ ├── SRNumberSpinner.cs.meta │ │ │ │ ├── SRRetinaScaler.cs │ │ │ │ ├── SRRetinaScaler.cs.meta │ │ │ │ ├── SRSpinner.cs │ │ │ │ ├── SRSpinner.cs.meta │ │ │ │ ├── SRText.cs │ │ │ │ ├── SRText.cs.meta │ │ │ │ ├── ScrollToBottomBehaviour.cs │ │ │ │ ├── ScrollToBottomBehaviour.cs.meta │ │ │ │ ├── StyleComponent.cs │ │ │ │ ├── StyleComponent.cs.meta │ │ │ │ ├── StyleRoot.cs │ │ │ │ ├── StyleRoot.cs.meta │ │ │ │ ├── StyleSheet.cs │ │ │ │ ├── StyleSheet.cs.meta │ │ │ │ ├── Unselectable.cs │ │ │ │ └── Unselectable.cs.meta │ │ ├── StompyRobot.SRF.asmdef │ │ └── StompyRobot.SRF.asmdef.meta │ │ ├── SROptions.meta │ │ └── SROptions │ │ ├── SROptions.Attributes.cs │ │ ├── SROptions.Attributes.cs.meta │ │ ├── SROptions.Test.cs │ │ ├── SROptions.Test.cs.meta │ │ ├── SROptions.asmdef │ │ ├── SROptions.asmdef.meta │ │ ├── SROptions.cs │ │ ├── SROptions.cs.meta │ │ ├── link.xml │ │ └── link.xml.meta ├── UniversalRenderPipelineGlobalSettings.asset └── UniversalRenderPipelineGlobalSettings.asset.meta ├── BuilderDependencies ├── TestResultParser.cake └── UnityLogParser.cake ├── Dockerfile ├── Gifs ├── GIf_6.gif ├── Gif_1.gif ├── Gif_2.gif ├── Gif_3.gif ├── Gif_4.gif └── Gif_5.gif ├── Images ├── Image_1.png ├── Image_2.png ├── Image_3.png ├── Image_4.png ├── Image_5.png └── Image_6.png ├── Packages ├── manifest.json └── packages-lock.json ├── ProjectSettings ├── AudioManager.asset ├── BurstAotSettings_Android.json ├── ClusterInputManager.asset ├── CommonBurstAotSettings.json ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── InputManager.asset ├── MemorySettings.asset ├── MultiplayerManager.asset ├── NavMeshAreas.asset ├── PackageManagerSettings.asset ├── Packages │ └── com.unity.testtools.codecoverage │ │ └── Settings.json ├── Physics2DSettings.asset ├── PresetManager.asset ├── ProjectSettings.asset ├── ProjectVersion.txt ├── QualitySettings.asset ├── SceneTemplateSettings.json ├── ShaderGraphSettings.asset ├── TagManager.asset ├── TimeManager.asset ├── TimelineSettings.asset ├── ToonyColorsPro.json ├── URPProjectSettings.asset ├── UnityConnectSettings.asset ├── VFXManager.asset ├── VersionControlSettings.asset └── XRSettings.asset ├── README.md ├── bot ├── BotLib.Abstractions.deps.json └── BotLib.Abstractions.dll └── sort.js /.config/dotnet-tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/.config/dotnet-tools.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/unity-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/.github/workflows/unity-build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/.gitignore -------------------------------------------------------------------------------- /.utmp/RelWithDebInfo/571271i6/armeabi-v7a/.cmake/api/v1/query/client-agp/cache-v2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.utmp/RelWithDebInfo/571271i6/armeabi-v7a/.cmake/api/v1/query/client-agp/cmakeFiles-v1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.utmp/RelWithDebInfo/571271i6/armeabi-v7a/.cmake/api/v1/query/client-agp/codemodel-v2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.utmp/RelWithDebInfo/6w5a4q29/armeabi-v7a/.cmake/api/v1/query/client-agp/cache-v2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.utmp/RelWithDebInfo/6w5a4q29/armeabi-v7a/.cmake/api/v1/query/client-agp/cmakeFiles-v1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.utmp/RelWithDebInfo/6w5a4q29/armeabi-v7a/.cmake/api/v1/query/client-agp/codemodel-v2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Assets/Code.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code.meta -------------------------------------------------------------------------------- /Assets/Code/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Editor.meta -------------------------------------------------------------------------------- /Assets/Code/Editor/GameEditor.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Editor/GameEditor.asmdef -------------------------------------------------------------------------------- /Assets/Code/Editor/GameEditor.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Editor/GameEditor.asmdef.meta -------------------------------------------------------------------------------- /Assets/Code/Editor/Localization.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Editor/Localization.meta -------------------------------------------------------------------------------- /Assets/Code/Editor/SFX.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Editor/SFX.meta -------------------------------------------------------------------------------- /Assets/Code/Editor/SFX/EnumSyncPostCompile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Editor/SFX/EnumSyncPostCompile.cs -------------------------------------------------------------------------------- /Assets/Code/Editor/SFX/EnumSyncPostCompile.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Editor/SFX/EnumSyncPostCompile.cs.meta -------------------------------------------------------------------------------- /Assets/Code/Editor/SFX/SoundLibraryEditorWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Editor/SFX/SoundLibraryEditorWindow.cs -------------------------------------------------------------------------------- /Assets/Code/Editor/Save.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Editor/Save.meta -------------------------------------------------------------------------------- /Assets/Code/Editor/Save/JsonWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Editor/Save/JsonWrapper.cs -------------------------------------------------------------------------------- /Assets/Code/Editor/Save/JsonWrapper.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Editor/Save/JsonWrapper.cs.meta -------------------------------------------------------------------------------- /Assets/Code/Editor/Save/ViewGameSavesWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Editor/Save/ViewGameSavesWindow.cs -------------------------------------------------------------------------------- /Assets/Code/Editor/Tests.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Editor/Tests.meta -------------------------------------------------------------------------------- /Assets/Code/Editor/Tests/TestsToolWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Editor/Tests/TestsToolWindow.cs -------------------------------------------------------------------------------- /Assets/Code/Editor/Tests/TestsToolWindow.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a339708f86a7e2e4b8f1059c0c57fabb -------------------------------------------------------------------------------- /Assets/Code/Editor/TextToTMPConverterEditorWindow.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a2e8d02a6be4de246ae74445761028cd -------------------------------------------------------------------------------- /Assets/Code/Extensions.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: deb04bb5936859340ad01b73bf02c9f7 3 | timeCreated: 1615568820 -------------------------------------------------------------------------------- /Assets/Code/Extensions/DOTweenTMPExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Extensions/DOTweenTMPExtensions.cs -------------------------------------------------------------------------------- /Assets/Code/Extensions/DOTweenTMPExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 15ce1cb2ea2b4ae4dbfcd892095ce96f -------------------------------------------------------------------------------- /Assets/Code/Extensions/DataExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Extensions/DataExtensions.cs -------------------------------------------------------------------------------- /Assets/Code/Extensions/DataExtensions.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Extensions/DataExtensions.cs.meta -------------------------------------------------------------------------------- /Assets/Code/Extensions/FunctionalExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Extensions/FunctionalExtensions.cs -------------------------------------------------------------------------------- /Assets/Code/Extensions/FunctionalExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: be6cc57e4c8e470c95aa5705d093df2b 3 | timeCreated: 1635170351 -------------------------------------------------------------------------------- /Assets/Code/Extensions/IEmumerableExtentions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Extensions/IEmumerableExtentions.cs -------------------------------------------------------------------------------- /Assets/Code/Extensions/IEmumerableExtentions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 00af7a2fbc8547059f2caebfc0b7b2bb 3 | timeCreated: 1615568821 -------------------------------------------------------------------------------- /Assets/Code/Extensions/InputServiceExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Extensions/InputServiceExtensions.cs -------------------------------------------------------------------------------- /Assets/Code/Extensions/InputServiceExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1bf3b0a5f0c7cb84cabdd849ae3227aa -------------------------------------------------------------------------------- /Assets/Code/Extensions/VectorExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Extensions/VectorExtensions.cs -------------------------------------------------------------------------------- /Assets/Code/Extensions/VectorExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d108de04a1d84f05948cb859f51e6b60 3 | timeCreated: 1635170052 -------------------------------------------------------------------------------- /Assets/Code/Game.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Game.asmdef -------------------------------------------------------------------------------- /Assets/Code/Game.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Game.asmdef.meta -------------------------------------------------------------------------------- /Assets/Code/Infrastructure.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Infrastructure.meta -------------------------------------------------------------------------------- /Assets/Code/Infrastructure/CoroutineRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Infrastructure/CoroutineRunner.cs -------------------------------------------------------------------------------- /Assets/Code/Infrastructure/CoroutineRunner.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Infrastructure/CoroutineRunner.cs.meta -------------------------------------------------------------------------------- /Assets/Code/Infrastructure/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Infrastructure/Editor.meta -------------------------------------------------------------------------------- /Assets/Code/Infrastructure/Editor/Helper.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Infrastructure/Editor/Helper.meta -------------------------------------------------------------------------------- /Assets/Code/Infrastructure/Editor/LevelHolderEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c2c97c5b456a3dd4ab30f8a609dff5df -------------------------------------------------------------------------------- /Assets/Code/Infrastructure/Editor/LevelRandomConfigStaticDataEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 546d9f40f32332c4480607be6642d6e2 -------------------------------------------------------------------------------- /Assets/Code/Infrastructure/Editor/PathEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Infrastructure/Editor/PathEditor.cs -------------------------------------------------------------------------------- /Assets/Code/Infrastructure/GameRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Infrastructure/GameRunner.cs -------------------------------------------------------------------------------- /Assets/Code/Infrastructure/GameRunner.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Infrastructure/GameRunner.cs.meta -------------------------------------------------------------------------------- /Assets/Code/Infrastructure/ICoroutineRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Infrastructure/ICoroutineRunner.cs -------------------------------------------------------------------------------- /Assets/Code/Infrastructure/ICoroutineRunner.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3cad314408ea472b8986dccf28300174 3 | timeCreated: 1613583034 -------------------------------------------------------------------------------- /Assets/Code/Infrastructure/ILoadingCurtain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Infrastructure/ILoadingCurtain.cs -------------------------------------------------------------------------------- /Assets/Code/Infrastructure/ILoadingCurtain.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3ef48264e7d24877a44d1e0194176121 3 | timeCreated: 1630602604 -------------------------------------------------------------------------------- /Assets/Code/Infrastructure/ISceneLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Infrastructure/ISceneLoader.cs -------------------------------------------------------------------------------- /Assets/Code/Infrastructure/ISceneLoader.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9f7ae625fbd2488da33fdd58ee3ef90a 3 | timeCreated: 1616000307 -------------------------------------------------------------------------------- /Assets/Code/Infrastructure/Installers.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Infrastructure/Installers.meta -------------------------------------------------------------------------------- /Assets/Code/Infrastructure/LoadingCurtain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Infrastructure/LoadingCurtain.cs -------------------------------------------------------------------------------- /Assets/Code/Infrastructure/LoadingCurtain.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 454b61b07c594627b44849978d630a46 3 | timeCreated: 1630602385 -------------------------------------------------------------------------------- /Assets/Code/Infrastructure/SceneLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Infrastructure/SceneLoader.cs -------------------------------------------------------------------------------- /Assets/Code/Infrastructure/SceneLoader.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 02a3f1fd91104718a817a63997291433 3 | timeCreated: 1613586209 -------------------------------------------------------------------------------- /Assets/Code/Infrastructure/StateMachine.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Infrastructure/StateMachine.meta -------------------------------------------------------------------------------- /Assets/Code/Infrastructure/StateMachine/Game.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Infrastructure/StateMachine/Game.meta -------------------------------------------------------------------------------- /Assets/Code/Infrastructure/StateMachine/Game/States.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c94584afa063adb4493446eedd208452 3 | timeCreated: 1613588607 -------------------------------------------------------------------------------- /Assets/Code/Infrastructure/StateMachine/Game/States/BootstrapAnalyticState.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e08f49cbb8b4eb648a3ec31e03c9088b -------------------------------------------------------------------------------- /Assets/Code/Infrastructure/StateMachine/Game/States/IState.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d21e51865052452d9ab04e288f6b2f84 3 | timeCreated: 1616588850 -------------------------------------------------------------------------------- /Assets/Code/Infrastructure/StateMachine/Game/States/LoadMenuState.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b5c3b25984b9ba341b2697a07be372d8 -------------------------------------------------------------------------------- /Assets/Code/Infrastructure/StateMachine/Game/States/PreLoadGameState.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 996b579819e7e8d48a673e5b300b8fda -------------------------------------------------------------------------------- /Assets/Code/Infrastructure/StateMachine/Game/States/TypeLoad.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9a4909a203813914dbfad23715d2c8be -------------------------------------------------------------------------------- /Assets/Code/Infrastructure/StateMachine/IStateFactory.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4709d9ac47304aeeb0d1a7d5aea9e3df 3 | timeCreated: 1630445666 -------------------------------------------------------------------------------- /Assets/Code/Infrastructure/StateMachine/IStateInfo.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ab5a58acd24b42ecb16e29b471b5b8fe 3 | timeCreated: 1630511107 -------------------------------------------------------------------------------- /Assets/Code/Infrastructure/StateMachine/IStateMachine.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 042630a367ca49acba20806f30e73fe6 3 | timeCreated: 1630604758 -------------------------------------------------------------------------------- /Assets/Code/Infrastructure/StateMachine/PayloadedStateInfo.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2afd3849b66b4b7f888e2704ea48a8f5 3 | timeCreated: 1630450570 -------------------------------------------------------------------------------- /Assets/Code/Infrastructure/StateMachine/StateFactory.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 93c716b222804a3e844265c115f448db 3 | timeCreated: 1630445929 -------------------------------------------------------------------------------- /Assets/Code/Infrastructure/StateMachine/StateInfo.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ea0618daed714e1f95fb4e4ee8e15fc2 3 | timeCreated: 1630450045 -------------------------------------------------------------------------------- /Assets/Code/Infrastructure/StateMachine/StateMachine.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 573de7aabe7d446ba2bb86c06f2c6d80 3 | timeCreated: 1613583341 -------------------------------------------------------------------------------- /Assets/Code/Localization.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Localization.meta -------------------------------------------------------------------------------- /Assets/Code/Localization/Code.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Localization/Code.meta -------------------------------------------------------------------------------- /Assets/Code/Localization/Code/Locale.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Localization/Code/Locale.cs -------------------------------------------------------------------------------- /Assets/Code/Localization/Code/Locale.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Localization/Code/Locale.cs.meta -------------------------------------------------------------------------------- /Assets/Code/Localization/Code/LocalizeBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Localization/Code/LocalizeBase.cs -------------------------------------------------------------------------------- /Assets/Code/Localization/Code/LocalizeBase.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Localization/Code/LocalizeBase.cs.meta -------------------------------------------------------------------------------- /Assets/Code/Localization/Code/Services.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Localization/Code/Services.meta -------------------------------------------------------------------------------- /Assets/Code/Localization/Code/TMP_Localizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Localization/Code/TMP_Localizer.cs -------------------------------------------------------------------------------- /Assets/Code/Localization/Code/UI.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Localization/Code/UI.meta -------------------------------------------------------------------------------- /Assets/Code/Localization/Intro.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Localization/Intro.meta -------------------------------------------------------------------------------- /Assets/Code/Localization/Intro/AllText.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Assets/Code/Localization/Intro/AllText.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Localization/Intro/AllText.txt.meta -------------------------------------------------------------------------------- /Assets/Code/Localization/Intro/Resources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Localization/Intro/Resources.meta -------------------------------------------------------------------------------- /Assets/Code/Logic.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Logic.meta -------------------------------------------------------------------------------- /Assets/Code/Logic/Collisions.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Logic/Collisions.meta -------------------------------------------------------------------------------- /Assets/Code/Logic/Collisions/CollisionObserver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Logic/Collisions/CollisionObserver.cs -------------------------------------------------------------------------------- /Assets/Code/Logic/Collisions/TriggerObserver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Logic/Collisions/TriggerObserver.cs -------------------------------------------------------------------------------- /Assets/Code/Logic/ParticleSystemHolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Logic/ParticleSystemHolder.cs -------------------------------------------------------------------------------- /Assets/Code/Logic/ParticleSystemHolder.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1319fb644230cc24aaf9dee11cb685e5 -------------------------------------------------------------------------------- /Assets/Code/Logic/Pools.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Logic/Pools.meta -------------------------------------------------------------------------------- /Assets/Code/Logic/Pools/PoolMono.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Logic/Pools/PoolMono.cs -------------------------------------------------------------------------------- /Assets/Code/Logic/Pools/PoolMono.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bbd83cdd2967b2c49818c58162f2cf07 -------------------------------------------------------------------------------- /Assets/Code/Logic/Zuma.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Logic/Zuma.meta -------------------------------------------------------------------------------- /Assets/Code/Logic/Zuma/Balls.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Logic/Zuma/Balls.meta -------------------------------------------------------------------------------- /Assets/Code/Logic/Zuma/Balls/Ball.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Logic/Zuma/Balls/Ball.cs -------------------------------------------------------------------------------- /Assets/Code/Logic/Zuma/Balls/Ball.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Logic/Zuma/Balls/Ball.cs.meta -------------------------------------------------------------------------------- /Assets/Code/Logic/Zuma/Balls/BallIntersectionTracker.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1d77b74a1c4863d4ba4d4f402092da66 -------------------------------------------------------------------------------- /Assets/Code/Logic/Zuma/Balls/BallMover.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Logic/Zuma/Balls/BallMover.cs -------------------------------------------------------------------------------- /Assets/Code/Logic/Zuma/Balls/BallMover.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 07f76b90502b697479d530940e547f00 -------------------------------------------------------------------------------- /Assets/Code/Logic/Zuma/Balls/BallRotator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Logic/Zuma/Balls/BallRotator.cs -------------------------------------------------------------------------------- /Assets/Code/Logic/Zuma/Balls/BallRotator.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1422134c4cb75fc4a8801c14f6b2ae47 -------------------------------------------------------------------------------- /Assets/Code/Logic/Zuma/Item.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Logic/Zuma/Item.cs -------------------------------------------------------------------------------- /Assets/Code/Logic/Zuma/Item.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Logic/Zuma/Item.cs.meta -------------------------------------------------------------------------------- /Assets/Code/Logic/Zuma/Level.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Logic/Zuma/Level.meta -------------------------------------------------------------------------------- /Assets/Code/Logic/Zuma/Level/LevelEnd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Logic/Zuma/Level/LevelEnd.cs -------------------------------------------------------------------------------- /Assets/Code/Logic/Zuma/Level/LevelEnd.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b96b474e689cec449a0749f1163f3e5b -------------------------------------------------------------------------------- /Assets/Code/Logic/Zuma/Level/LevelHolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Logic/Zuma/Level/LevelHolder.cs -------------------------------------------------------------------------------- /Assets/Code/Logic/Zuma/Level/LevelHolder.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Logic/Zuma/Level/LevelHolder.cs.meta -------------------------------------------------------------------------------- /Assets/Code/Logic/Zuma/Level/LevelStart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Logic/Zuma/Level/LevelStart.cs -------------------------------------------------------------------------------- /Assets/Code/Logic/Zuma/Level/LevelStart.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fb6e5717b94ad064eafd682d9929baf0 -------------------------------------------------------------------------------- /Assets/Code/Logic/Zuma/Players.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Logic/Zuma/Players.meta -------------------------------------------------------------------------------- /Assets/Code/Logic/Zuma/Players/BezierIntersection.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 26362cedbc2cdef4db2040ac682c1a39 -------------------------------------------------------------------------------- /Assets/Code/Logic/Zuma/Players/Player.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Logic/Zuma/Players/Player.cs -------------------------------------------------------------------------------- /Assets/Code/Logic/Zuma/Players/Player.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Logic/Zuma/Players/Player.cs.meta -------------------------------------------------------------------------------- /Assets/Code/Logic/Zuma/Players/PlayerAiming.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Logic/Zuma/Players/PlayerAiming.cs -------------------------------------------------------------------------------- /Assets/Code/Logic/Zuma/Players/PlayerAiming.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 93631440da83a5244831c6ba2d649403 -------------------------------------------------------------------------------- /Assets/Code/Logic/Zuma/Players/PlayerAnimator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Logic/Zuma/Players/PlayerAnimator.cs -------------------------------------------------------------------------------- /Assets/Code/Logic/Zuma/Players/PlayerAnimator.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2e3bd3d7a3250d445b83a9b8aa168e18 -------------------------------------------------------------------------------- /Assets/Code/Logic/Zuma/Players/PlayerShooting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Logic/Zuma/Players/PlayerShooting.cs -------------------------------------------------------------------------------- /Assets/Code/Logic/Zuma/Players/PlayerShooting.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e75bd4d0258a63e4ca28334421905824 -------------------------------------------------------------------------------- /Assets/Code/PathCreation.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/PathCreation.meta -------------------------------------------------------------------------------- /Assets/Code/PathCreation/Core.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/PathCreation/Core.meta -------------------------------------------------------------------------------- /Assets/Code/PathCreation/Core/Runtime.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/PathCreation/Core/Runtime.meta -------------------------------------------------------------------------------- /Assets/Code/PathCreation/Core/Runtime/Objects.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/PathCreation/Core/Runtime/Objects.meta -------------------------------------------------------------------------------- /Assets/Code/PathCreation/Core/Runtime/PathCreator.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "PathCreator" 3 | } 4 | -------------------------------------------------------------------------------- /Assets/Code/PathCreation/Core/Runtime/Utility.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/PathCreation/Core/Runtime/Utility.meta -------------------------------------------------------------------------------- /Assets/Code/PathCreation/Core/Settings.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/PathCreation/Core/Settings.meta -------------------------------------------------------------------------------- /Assets/Code/PathCreation/Documentation.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/PathCreation/Documentation.meta -------------------------------------------------------------------------------- /Assets/Code/PathCreation/Examples.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/PathCreation/Examples.meta -------------------------------------------------------------------------------- /Assets/Code/PathCreation/Examples/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/PathCreation/Examples/Materials.meta -------------------------------------------------------------------------------- /Assets/Code/PathCreation/Examples/Prefabs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/PathCreation/Examples/Prefabs.meta -------------------------------------------------------------------------------- /Assets/Code/PathCreation/Examples/Scenes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/PathCreation/Examples/Scenes.meta -------------------------------------------------------------------------------- /Assets/Code/PathCreation/Examples/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/PathCreation/Examples/Scripts.meta -------------------------------------------------------------------------------- /Assets/Code/Services.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 905377e28aa1f454aaed0d07c5b534bf 3 | timeCreated: 1630608835 -------------------------------------------------------------------------------- /Assets/Code/Services/BallController.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Services/BallController.meta -------------------------------------------------------------------------------- /Assets/Code/Services/BallController/BallChainController.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 442eb3f6aff3d8f48b30effc4a20424e -------------------------------------------------------------------------------- /Assets/Code/Services/BallController/IBallChainController.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a2457c58b744bee42b1d778b8ae9f63a -------------------------------------------------------------------------------- /Assets/Code/Services/Factories.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Services/Factories.meta -------------------------------------------------------------------------------- /Assets/Code/Services/Factories/Factory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Services/Factories/Factory.cs -------------------------------------------------------------------------------- /Assets/Code/Services/Factories/Factory.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 56497acecdb4413aa2f19056bde74e28 3 | timeCreated: 1635168555 -------------------------------------------------------------------------------- /Assets/Code/Services/Factories/Game.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f12558dc91914e2089fe02813f16cf1f 3 | timeCreated: 1635169312 -------------------------------------------------------------------------------- /Assets/Code/Services/Factories/Game/GameFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Services/Factories/Game/GameFactory.cs -------------------------------------------------------------------------------- /Assets/Code/Services/Factories/Game/GameFactory.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ba9a4e5ff92a41f990865870ba32f0cb 3 | timeCreated: 1635169333 -------------------------------------------------------------------------------- /Assets/Code/Services/Factories/Game/IGameFactory.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7fcf6447e17d47d196e1ac594c413f43 3 | timeCreated: 1635169411 -------------------------------------------------------------------------------- /Assets/Code/Services/Factories/ResourcePath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Services/Factories/ResourcePath.cs -------------------------------------------------------------------------------- /Assets/Code/Services/Factories/UIFactory.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Services/Factories/UIFactory.meta -------------------------------------------------------------------------------- /Assets/Code/Services/Finish.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Services/Finish.meta -------------------------------------------------------------------------------- /Assets/Code/Services/Finish/FinishService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Services/Finish/FinishService.cs -------------------------------------------------------------------------------- /Assets/Code/Services/Finish/FinishService.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7876d0d32c838bf479f5fc85b58498c5 -------------------------------------------------------------------------------- /Assets/Code/Services/Finish/IFinishService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Services/Finish/IFinishService.cs -------------------------------------------------------------------------------- /Assets/Code/Services/Finish/IFinishService.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fa7ebb39309b9974fa68052024f87903 -------------------------------------------------------------------------------- /Assets/Code/Services/Finish/Lose.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Services/Finish/Lose.meta -------------------------------------------------------------------------------- /Assets/Code/Services/Finish/Lose/ILoseService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Services/Finish/Lose/ILoseService.cs -------------------------------------------------------------------------------- /Assets/Code/Services/Finish/Lose/ILoseService.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 25e1eea149c73c248b01557b0f7ae80c -------------------------------------------------------------------------------- /Assets/Code/Services/Finish/Lose/LoseService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Services/Finish/Lose/LoseService.cs -------------------------------------------------------------------------------- /Assets/Code/Services/Finish/Lose/LoseService.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ca20cd7a4b6683b459a24622aa099d80 -------------------------------------------------------------------------------- /Assets/Code/Services/Finish/Win.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Services/Finish/Win.meta -------------------------------------------------------------------------------- /Assets/Code/Services/Finish/Win/IWinService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Services/Finish/Win/IWinService.cs -------------------------------------------------------------------------------- /Assets/Code/Services/Finish/Win/IWinService.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 752195ad13611624ba2a79dfc345cd18 -------------------------------------------------------------------------------- /Assets/Code/Services/Finish/Win/WinService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Services/Finish/Win/WinService.cs -------------------------------------------------------------------------------- /Assets/Code/Services/Finish/Win/WinService.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 15e1ed72d1beb4e4a9345b5c1085b6ce -------------------------------------------------------------------------------- /Assets/Code/Services/Input.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Services/Input.meta -------------------------------------------------------------------------------- /Assets/Code/Services/Input/Device.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Services/Input/Device.meta -------------------------------------------------------------------------------- /Assets/Code/Services/Input/Device/IInputDevice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Services/Input/Device/IInputDevice.cs -------------------------------------------------------------------------------- /Assets/Code/Services/Input/Device/TouchInputDevice.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a02e1e0f67eeaa140803d1214c2fc420 -------------------------------------------------------------------------------- /Assets/Code/Services/Input/IInputService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Services/Input/IInputService.cs -------------------------------------------------------------------------------- /Assets/Code/Services/Input/IInputService.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Services/Input/IInputService.cs.meta -------------------------------------------------------------------------------- /Assets/Code/Services/Input/InputService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Services/Input/InputService.cs -------------------------------------------------------------------------------- /Assets/Code/Services/Input/InputService.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Services/Input/InputService.cs.meta -------------------------------------------------------------------------------- /Assets/Code/Services/Levels.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Services/Levels.meta -------------------------------------------------------------------------------- /Assets/Code/Services/Levels/ILevelService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Services/Levels/ILevelService.cs -------------------------------------------------------------------------------- /Assets/Code/Services/Levels/ILevelService.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2712fbef5410d0147a7655d8afe7fa53 -------------------------------------------------------------------------------- /Assets/Code/Services/Levels/LevelService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Services/Levels/LevelService.cs -------------------------------------------------------------------------------- /Assets/Code/Services/Levels/LevelService.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 15269963495316547b68782cf6bbcf47 -------------------------------------------------------------------------------- /Assets/Code/Services/LocalProgress.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Services/LocalProgress.meta -------------------------------------------------------------------------------- /Assets/Code/Services/LocalProgress/ILevelLocalProgressService.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 220ab5096cf26394aa94f7b6195bdfd0 -------------------------------------------------------------------------------- /Assets/Code/Services/PersistenceProgress.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8cb9bce018fe437ead3d0b3899e694ca 3 | timeCreated: 1635168036 -------------------------------------------------------------------------------- /Assets/Code/Services/PersistenceProgress/Analytic.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6b7fada3a7ae4d87938a4ea982ede3d4 3 | timeCreated: 1636994545 -------------------------------------------------------------------------------- /Assets/Code/Services/PersistenceProgress/Analytic/User.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1baaca3f4de6469881031b505d0b7dd1 3 | timeCreated: 1636994486 -------------------------------------------------------------------------------- /Assets/Code/Services/PersistenceProgress/Player.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f71a7c15f7cf4ab9b082231094b85b4a 3 | timeCreated: 1636994531 -------------------------------------------------------------------------------- /Assets/Code/Services/PersistenceProgress/Player/PlayerData.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f68cd646adc5413fb492cba62cff7886 3 | timeCreated: 1635168283 -------------------------------------------------------------------------------- /Assets/Code/Services/PersistenceProgress/Player/PlayerLevelData.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8680f78c8aedcc24d854bf8a6ea056d0 -------------------------------------------------------------------------------- /Assets/Code/Services/PersistenceProgress/Player/PlayerSettings.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 40a0b9ca152be82438135ee2c88e091a -------------------------------------------------------------------------------- /Assets/Code/Services/Providers.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Services/Providers.meta -------------------------------------------------------------------------------- /Assets/Code/Services/Providers/Balls.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Services/Providers/Balls.meta -------------------------------------------------------------------------------- /Assets/Code/Services/Providers/Balls/BallProvider.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 38f683789b56a4b4c8cde696a05bed5b -------------------------------------------------------------------------------- /Assets/Code/Services/Providers/Balls/IBallProvider.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c892979bd2e2b2b4bae1bca5211f071b -------------------------------------------------------------------------------- /Assets/Code/Services/Providers/Widgets.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Services/Providers/Widgets.meta -------------------------------------------------------------------------------- /Assets/Code/Services/Providers/Widgets/IWidgetProvider.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e52ebf8b44787d646b920c9265bc7014 -------------------------------------------------------------------------------- /Assets/Code/Services/Providers/Widgets/WidgetProvider.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 73ea97a7c076a9b4080405369a4bcc79 -------------------------------------------------------------------------------- /Assets/Code/Services/Random.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 693e7baaa62447f5b10b52b79280d5f7 3 | timeCreated: 1637006519 -------------------------------------------------------------------------------- /Assets/Code/Services/Random/IRandomService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Services/Random/IRandomService.cs -------------------------------------------------------------------------------- /Assets/Code/Services/Random/IRandomService.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cd73192563bc449ab7dcd9aee79c667c 3 | timeCreated: 1637006504 -------------------------------------------------------------------------------- /Assets/Code/Services/Random/RandomService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Services/Random/RandomService.cs -------------------------------------------------------------------------------- /Assets/Code/Services/Random/RandomService.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 509056e9bb044896a62d3ac0083c11af 3 | timeCreated: 1637006607 -------------------------------------------------------------------------------- /Assets/Code/Services/SFX.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Services/SFX.meta -------------------------------------------------------------------------------- /Assets/Code/Services/SFX/Music.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Services/SFX/Music.meta -------------------------------------------------------------------------------- /Assets/Code/Services/SFX/Music/IMusicService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Services/SFX/Music/IMusicService.cs -------------------------------------------------------------------------------- /Assets/Code/Services/SFX/Music/MusicService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Services/SFX/Music/MusicService.cs -------------------------------------------------------------------------------- /Assets/Code/Services/SFX/Music/MusicType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Services/SFX/Music/MusicType.cs -------------------------------------------------------------------------------- /Assets/Code/Services/SFX/Music/MusicType.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Services/SFX/Music/MusicType.cs.meta -------------------------------------------------------------------------------- /Assets/Code/Services/SFX/Sound.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Services/SFX/Sound.meta -------------------------------------------------------------------------------- /Assets/Code/Services/SFX/Sound/ISoundService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Services/SFX/Sound/ISoundService.cs -------------------------------------------------------------------------------- /Assets/Code/Services/SFX/Sound/Sound2DType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Services/SFX/Sound/Sound2DType.cs -------------------------------------------------------------------------------- /Assets/Code/Services/SFX/Sound/Sound2DType.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Services/SFX/Sound/Sound2DType.cs.meta -------------------------------------------------------------------------------- /Assets/Code/Services/SFX/Sound/Sound3DType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Services/SFX/Sound/Sound3DType.cs -------------------------------------------------------------------------------- /Assets/Code/Services/SFX/Sound/Sound3DType.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Services/SFX/Sound/Sound3DType.cs.meta -------------------------------------------------------------------------------- /Assets/Code/Services/SFX/Sound/SoundService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Services/SFX/Sound/SoundService.cs -------------------------------------------------------------------------------- /Assets/Code/Services/SFX/StaticData.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Services/SFX/StaticData.meta -------------------------------------------------------------------------------- /Assets/Code/Services/SFX/Vibration.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Services/SFX/Vibration.meta -------------------------------------------------------------------------------- /Assets/Code/Services/SaveLoad.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Services/SaveLoad.meta -------------------------------------------------------------------------------- /Assets/Code/Services/SaveLoad/ISaveLoadFacade.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Services/SaveLoad/ISaveLoadFacade.cs -------------------------------------------------------------------------------- /Assets/Code/Services/SaveLoad/ISaveLoadService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Services/SaveLoad/ISaveLoadService.cs -------------------------------------------------------------------------------- /Assets/Code/Services/SaveLoad/SaveMethodType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Services/SaveLoad/SaveMethodType.cs -------------------------------------------------------------------------------- /Assets/Code/Services/StaticData.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Services/StaticData.meta -------------------------------------------------------------------------------- /Assets/Code/Services/StaticData/IStaticDataService.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d667f8023f96494ca3d1a5b38d9ba58a 3 | timeCreated: 1630609387 -------------------------------------------------------------------------------- /Assets/Code/Services/StaticData/StaticDataService.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6848c0ff2c0342c8a36bc47ee29941a0 3 | timeCreated: 1630608848 -------------------------------------------------------------------------------- /Assets/Code/Services/Timer.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Services/Timer.meta -------------------------------------------------------------------------------- /Assets/Code/Services/Timer/ITimeService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Services/Timer/ITimeService.cs -------------------------------------------------------------------------------- /Assets/Code/Services/Timer/ITimeService.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Services/Timer/ITimeService.cs.meta -------------------------------------------------------------------------------- /Assets/Code/Services/Timer/TimeService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Services/Timer/TimeService.cs -------------------------------------------------------------------------------- /Assets/Code/Services/Timer/TimeService.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7519e4a0f75a46c4abf40726ec4e6342 3 | timeCreated: 1695374270 -------------------------------------------------------------------------------- /Assets/Code/Services/Window.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Services/Window.meta -------------------------------------------------------------------------------- /Assets/Code/Services/Window/IWindowService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Services/Window/IWindowService.cs -------------------------------------------------------------------------------- /Assets/Code/Services/Window/IWindowService.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 958324b44dea4af892b6dfe5fcc062ce 3 | timeCreated: 1616000482 -------------------------------------------------------------------------------- /Assets/Code/Services/Window/WindowService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Services/Window/WindowService.cs -------------------------------------------------------------------------------- /Assets/Code/Services/Window/WindowService.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 29da768007a54890928e61722e778455 3 | timeCreated: 1616000472 -------------------------------------------------------------------------------- /Assets/Code/StaticData.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 113b77e87c584fc40840ebd30d141332 3 | timeCreated: 1630609449 -------------------------------------------------------------------------------- /Assets/Code/StaticData/BalanceStaticData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/StaticData/BalanceStaticData.cs -------------------------------------------------------------------------------- /Assets/Code/StaticData/BalanceStaticData.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/StaticData/BalanceStaticData.cs.meta -------------------------------------------------------------------------------- /Assets/Code/StaticData/BallChainStaticData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/StaticData/BallChainStaticData.cs -------------------------------------------------------------------------------- /Assets/Code/StaticData/BallChainStaticData.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9d00693b2916b1f469e936b688589c87 -------------------------------------------------------------------------------- /Assets/Code/StaticData/BuildSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/StaticData/BuildSettings.cs -------------------------------------------------------------------------------- /Assets/Code/StaticData/BuildSettings.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bc5f6e14c09bd0b408192f7c1945b7cb -------------------------------------------------------------------------------- /Assets/Code/StaticData/GameStaticData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/StaticData/GameStaticData.cs -------------------------------------------------------------------------------- /Assets/Code/StaticData/GameStaticData.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b045265c38d5480c9626a84b9b54601b 3 | timeCreated: 1630609314 -------------------------------------------------------------------------------- /Assets/Code/StaticData/Levels.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/StaticData/Levels.meta -------------------------------------------------------------------------------- /Assets/Code/StaticData/Levels/ChapterStaticData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/StaticData/Levels/ChapterStaticData.cs -------------------------------------------------------------------------------- /Assets/Code/StaticData/Levels/ItemConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/StaticData/Levels/ItemConfig.cs -------------------------------------------------------------------------------- /Assets/Code/StaticData/Levels/ItemConfig.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b24a9ae342acde84ead77f3979b34f3f -------------------------------------------------------------------------------- /Assets/Code/StaticData/Levels/LevelRandomConfigStaticData.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7ab0042e0730c844ba78c5c1a6be6423 -------------------------------------------------------------------------------- /Assets/Code/StaticData/Levels/LevelStaticData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/StaticData/Levels/LevelStaticData.cs -------------------------------------------------------------------------------- /Assets/Code/StaticData/SFX.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/StaticData/SFX.meta -------------------------------------------------------------------------------- /Assets/Code/StaticData/SFX/SoundData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/StaticData/SFX/SoundData.cs -------------------------------------------------------------------------------- /Assets/Code/StaticData/SFX/SoundData.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/StaticData/SFX/SoundData.cs.meta -------------------------------------------------------------------------------- /Assets/Code/StaticData/SFX/SoundsData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/StaticData/SFX/SoundsData.cs -------------------------------------------------------------------------------- /Assets/Code/StaticData/SFX/SoundsData.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/StaticData/SFX/SoundsData.cs.meta -------------------------------------------------------------------------------- /Assets/Code/StaticData/SFX/VibrationData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/StaticData/SFX/VibrationData.cs -------------------------------------------------------------------------------- /Assets/Code/StaticData/SFX/VibrationData.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/StaticData/SFX/VibrationData.cs.meta -------------------------------------------------------------------------------- /Assets/Code/StaticData/SFX/VibrationMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/StaticData/SFX/VibrationMode.cs -------------------------------------------------------------------------------- /Assets/Code/StaticData/SFX/VibrationMode.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/StaticData/SFX/VibrationMode.cs.meta -------------------------------------------------------------------------------- /Assets/Code/StaticData/SFX/VibrationsData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/StaticData/SFX/VibrationsData.cs -------------------------------------------------------------------------------- /Assets/Code/StaticData/SFX/VibrationsData.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/StaticData/SFX/VibrationsData.cs.meta -------------------------------------------------------------------------------- /Assets/Code/StaticData/WindowConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/StaticData/WindowConfig.cs -------------------------------------------------------------------------------- /Assets/Code/StaticData/WindowConfig.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/StaticData/WindowConfig.cs.meta -------------------------------------------------------------------------------- /Assets/Code/StaticData/WindowStaticData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/StaticData/WindowStaticData.cs -------------------------------------------------------------------------------- /Assets/Code/StaticData/WindowStaticData.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/StaticData/WindowStaticData.cs.meta -------------------------------------------------------------------------------- /Assets/Code/UI.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/UI.meta -------------------------------------------------------------------------------- /Assets/Code/UI/ButtonScaler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/UI/ButtonScaler.cs -------------------------------------------------------------------------------- /Assets/Code/UI/ButtonScaler.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 92d67a88276d0af46ad591b6491e0e41 -------------------------------------------------------------------------------- /Assets/Code/UI/Buttons.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/UI/Buttons.meta -------------------------------------------------------------------------------- /Assets/Code/UI/Buttons/FinishButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/UI/Buttons/FinishButton.cs -------------------------------------------------------------------------------- /Assets/Code/UI/Buttons/FinishButton.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9180e68feb787004f9fe984822a668b2 -------------------------------------------------------------------------------- /Assets/Code/UI/Buttons/LoadStateButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/UI/Buttons/LoadStateButton.cs -------------------------------------------------------------------------------- /Assets/Code/UI/Buttons/LoadStateButton.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/UI/Buttons/LoadStateButton.cs.meta -------------------------------------------------------------------------------- /Assets/Code/UI/Buttons/RestartButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/UI/Buttons/RestartButton.cs -------------------------------------------------------------------------------- /Assets/Code/UI/Buttons/RestartButton.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/UI/Buttons/RestartButton.cs.meta -------------------------------------------------------------------------------- /Assets/Code/UI/Buttons/TypeFinish.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/UI/Buttons/TypeFinish.cs -------------------------------------------------------------------------------- /Assets/Code/UI/Buttons/TypeFinish.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/UI/Buttons/TypeFinish.cs.meta -------------------------------------------------------------------------------- /Assets/Code/UI/Game.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/UI/Game.meta -------------------------------------------------------------------------------- /Assets/Code/UI/Game/GameHud.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/UI/Game/GameHud.cs -------------------------------------------------------------------------------- /Assets/Code/UI/Game/GameHud.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3f4c5c78a99af80438521d3b1f26fd99 -------------------------------------------------------------------------------- /Assets/Code/UI/Game/LevelDisplayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/UI/Game/LevelDisplayer.cs -------------------------------------------------------------------------------- /Assets/Code/UI/Game/LevelDisplayer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ad40dfbb401055e4ca241cbf561abe47 -------------------------------------------------------------------------------- /Assets/Code/UI/Game/ScoreDisplayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/UI/Game/ScoreDisplayer.cs -------------------------------------------------------------------------------- /Assets/Code/UI/Game/ScoreDisplayer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1053323f0051c9249876281bfabfe582 -------------------------------------------------------------------------------- /Assets/Code/UI/Game/StartLevelInfoDisplayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/UI/Game/StartLevelInfoDisplayer.cs -------------------------------------------------------------------------------- /Assets/Code/UI/Game/StartLevelInfoDisplayer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7d136b13f93a84642b86ea1971cfcec9 -------------------------------------------------------------------------------- /Assets/Code/UI/Game/TimeDisplayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/UI/Game/TimeDisplayer.cs -------------------------------------------------------------------------------- /Assets/Code/UI/Game/TimeDisplayer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7af12826a82bec7488ea903cc12beb0f -------------------------------------------------------------------------------- /Assets/Code/UI/Game/TypeLevelDisplayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/UI/Game/TypeLevelDisplayer.cs -------------------------------------------------------------------------------- /Assets/Code/UI/Game/TypeLevelDisplayer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 095f3e797260a3446aee734ad7d3e3a0 -------------------------------------------------------------------------------- /Assets/Code/UI/InputZona.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/UI/InputZona.cs -------------------------------------------------------------------------------- /Assets/Code/UI/InputZona.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7304dab6cb3eb1144b598d523947dca4 -------------------------------------------------------------------------------- /Assets/Code/UI/LookAtCamera.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/UI/LookAtCamera.cs -------------------------------------------------------------------------------- /Assets/Code/UI/LookAtCamera.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d074d8de45c093648928cd5b7a6b33ce -------------------------------------------------------------------------------- /Assets/Code/UI/Menu.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/UI/Menu.meta -------------------------------------------------------------------------------- /Assets/Code/UI/Menu/ButtonsNavigation.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/UI/Menu/ButtonsNavigation.meta -------------------------------------------------------------------------------- /Assets/Code/UI/Menu/ButtonsNavigation/ButtonNavigation.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9578491be6a33384189e9e1a62745240 -------------------------------------------------------------------------------- /Assets/Code/UI/Menu/ButtonsNavigation/ButtonNavigationHolder.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 45bed4a25bcb702459e690323d8bf078 -------------------------------------------------------------------------------- /Assets/Code/UI/Menu/MenuHud.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/UI/Menu/MenuHud.cs -------------------------------------------------------------------------------- /Assets/Code/UI/Menu/MenuHud.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bd4e19be34ae356408b338f65c3d0c4d -------------------------------------------------------------------------------- /Assets/Code/UI/Menu/TypeWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/UI/Menu/TypeWindow.cs -------------------------------------------------------------------------------- /Assets/Code/UI/Menu/TypeWindow.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fdd60c40454e13d4d8f2b422f65e9f2f -------------------------------------------------------------------------------- /Assets/Code/UI/Menu/Windows.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/UI/Menu/Windows.meta -------------------------------------------------------------------------------- /Assets/Code/UI/Menu/Windows/BaseWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/UI/Menu/Windows/BaseWindow.cs -------------------------------------------------------------------------------- /Assets/Code/UI/Menu/Windows/BaseWindow.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1c471b7db737f604fa02184b6da53a6a -------------------------------------------------------------------------------- /Assets/Code/UI/Menu/Windows/IWindowState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/UI/Menu/Windows/IWindowState.cs -------------------------------------------------------------------------------- /Assets/Code/UI/Menu/Windows/IWindowState.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8706fa42e6c304d43aff10c25bfd9b3d -------------------------------------------------------------------------------- /Assets/Code/UI/Menu/Windows/Map.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/UI/Menu/Windows/Map.meta -------------------------------------------------------------------------------- /Assets/Code/UI/Menu/Windows/Map/ButtonSwipeChapter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a87956eaa85d99a44a24ba05797ff1d9 -------------------------------------------------------------------------------- /Assets/Code/UI/Menu/Windows/Map/ItemLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/UI/Menu/Windows/Map/ItemLevel.cs -------------------------------------------------------------------------------- /Assets/Code/UI/Menu/Windows/Map/ItemLevel.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5d8394d7a53c60b47861e45b6ecd8eec -------------------------------------------------------------------------------- /Assets/Code/UI/Menu/Windows/Map/MapWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/UI/Menu/Windows/Map/MapWindow.cs -------------------------------------------------------------------------------- /Assets/Code/UI/Menu/Windows/Map/MapWindow.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 189a517f25db4984b94ee9c1fd9ec039 -------------------------------------------------------------------------------- /Assets/Code/UI/Menu/Windows/Map/MapWindowState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/UI/Menu/Windows/Map/MapWindowState.cs -------------------------------------------------------------------------------- /Assets/Code/UI/Menu/Windows/Map/MapWindowState.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4b678813b5d3aad4699523a61e5a437c -------------------------------------------------------------------------------- /Assets/Code/UI/Menu/Windows/Map/Navigator.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/UI/Menu/Windows/Map/Navigator.meta -------------------------------------------------------------------------------- /Assets/Code/UI/Menu/Windows/Map/Navigator/ChapterNavigator.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c62066f7fe4280948b0c4076a53b17d0 -------------------------------------------------------------------------------- /Assets/Code/UI/Menu/Windows/Map/Navigator/IChapterNavigator.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d00dd18d83504d8428e605271645872a -------------------------------------------------------------------------------- /Assets/Code/UI/Menu/Windows/Map/TypeSwipe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/UI/Menu/Windows/Map/TypeSwipe.cs -------------------------------------------------------------------------------- /Assets/Code/UI/Menu/Windows/Map/TypeSwipe.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/UI/Menu/Windows/Map/TypeSwipe.cs.meta -------------------------------------------------------------------------------- /Assets/Code/UI/Menu/Windows/Meta.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/UI/Menu/Windows/Meta.meta -------------------------------------------------------------------------------- /Assets/Code/UI/Menu/Windows/Meta/MetaWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/UI/Menu/Windows/Meta/MetaWindow.cs -------------------------------------------------------------------------------- /Assets/Code/UI/Menu/Windows/Meta/MetaWindow.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 82765aed570471b4e928481638bf5b4c -------------------------------------------------------------------------------- /Assets/Code/UI/Menu/Windows/Meta/MetaWindowState.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bab1938bcecb98b4e9f0ba5807d62dcd 3 | -------------------------------------------------------------------------------- /Assets/Code/UI/Menu/Windows/Shop.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/UI/Menu/Windows/Shop.meta -------------------------------------------------------------------------------- /Assets/Code/UI/Menu/Windows/Shop/ShopWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/UI/Menu/Windows/Shop/ShopWindow.cs -------------------------------------------------------------------------------- /Assets/Code/UI/Menu/Windows/Shop/ShopWindow.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 71828b86107e432459557a15d8f05105 -------------------------------------------------------------------------------- /Assets/Code/UI/Menu/Windows/Shop/ShopWindowState.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9adfe70faa8ca324393f151e9a20f6e1 3 | -------------------------------------------------------------------------------- /Assets/Code/UI/Menu/Windows/StateWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/UI/Menu/Windows/StateWindow.cs -------------------------------------------------------------------------------- /Assets/Code/UI/Menu/Windows/StateWindow.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 29e6b19c1c3e3ff4cbff5a88d76c28bf -------------------------------------------------------------------------------- /Assets/Code/UI/Menu/Windows/WindowHolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/UI/Menu/Windows/WindowHolder.cs -------------------------------------------------------------------------------- /Assets/Code/UI/Menu/Windows/WindowHolder.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c9a7769470b3a6446a980192c6e101c0 -------------------------------------------------------------------------------- /Assets/Code/UI/TestSFX.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/UI/TestSFX.meta -------------------------------------------------------------------------------- /Assets/Code/UI/TestSFX/AudioVolumeTestUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/UI/TestSFX/AudioVolumeTestUI.cs -------------------------------------------------------------------------------- /Assets/Code/UI/TestSFX/AudioVolumeTestUI.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/UI/TestSFX/AudioVolumeTestUI.cs.meta -------------------------------------------------------------------------------- /Assets/Code/UI/TestSFX/Button2DSoundPlayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/UI/TestSFX/Button2DSoundPlayer.cs -------------------------------------------------------------------------------- /Assets/Code/UI/TestSFX/Button2DSoundPlayer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/UI/TestSFX/Button2DSoundPlayer.cs.meta -------------------------------------------------------------------------------- /Assets/Code/UI/TestSFX/MusicTestButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/UI/TestSFX/MusicTestButton.cs -------------------------------------------------------------------------------- /Assets/Code/UI/TestSFX/MusicTestButton.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/UI/TestSFX/MusicTestButton.cs.meta -------------------------------------------------------------------------------- /Assets/Code/UI/TestSFX/TeleportingSoundEmitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/UI/TestSFX/TeleportingSoundEmitter.cs -------------------------------------------------------------------------------- /Assets/Code/UI/TestSFX/VibrationTestButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/UI/TestSFX/VibrationTestButton.cs -------------------------------------------------------------------------------- /Assets/Code/UI/TestSFX/VibrationTestButton.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/UI/TestSFX/VibrationTestButton.cs.meta -------------------------------------------------------------------------------- /Assets/Code/UI/Widget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/UI/Widget.cs -------------------------------------------------------------------------------- /Assets/Code/UI/Widget.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fcdd9d0dbd4af4f468e592c503f3ca67 -------------------------------------------------------------------------------- /Assets/Code/Window.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Window.meta -------------------------------------------------------------------------------- /Assets/Code/Window/Finish.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Window/Finish.meta -------------------------------------------------------------------------------- /Assets/Code/Window/Finish/FinishWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Window/Finish/FinishWindow.cs -------------------------------------------------------------------------------- /Assets/Code/Window/Finish/FinishWindow.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4c5ed57bce91bfc49b98d9969dcb5df3 -------------------------------------------------------------------------------- /Assets/Code/Window/Finish/Lose.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Window/Finish/Lose.meta -------------------------------------------------------------------------------- /Assets/Code/Window/Finish/Lose/LoseWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Window/Finish/Lose/LoseWindow.cs -------------------------------------------------------------------------------- /Assets/Code/Window/Finish/Lose/LoseWindow.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ae2b72e7a1366d54da407e1882ba58d2 -------------------------------------------------------------------------------- /Assets/Code/Window/Finish/Win.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Window/Finish/Win.meta -------------------------------------------------------------------------------- /Assets/Code/Window/Finish/Win/BonusWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Window/Finish/Win/BonusWindow.cs -------------------------------------------------------------------------------- /Assets/Code/Window/Finish/Win/BonusWindow.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0d4e229d68bf9a244ac93f66343d7fad -------------------------------------------------------------------------------- /Assets/Code/Window/Finish/Win/WinWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Window/Finish/Win/WinWindow.cs -------------------------------------------------------------------------------- /Assets/Code/Window/Finish/Win/WinWindow.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 239ee3aac948dea40897b15fcf5b50ad -------------------------------------------------------------------------------- /Assets/Code/Window/Setting.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Window/Setting.meta -------------------------------------------------------------------------------- /Assets/Code/Window/Setting/ButtonSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Window/Setting/ButtonSettings.cs -------------------------------------------------------------------------------- /Assets/Code/Window/Setting/ButtonSettings.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6af342962724cd04e80c3696b6ff1d6b -------------------------------------------------------------------------------- /Assets/Code/Window/Setting/DropDownSwitcherLanguage.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9d757ea5f9149e547b6078d583ddb3bf -------------------------------------------------------------------------------- /Assets/Code/Window/Setting/SettingWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Window/Setting/SettingWindow.cs -------------------------------------------------------------------------------- /Assets/Code/Window/Setting/SettingWindow.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2560638566471ea4193cd450648c95a8 -------------------------------------------------------------------------------- /Assets/Code/Window/Setting/ToggleContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Window/Setting/ToggleContainer.cs -------------------------------------------------------------------------------- /Assets/Code/Window/Setting/ToggleContainer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Window/Setting/ToggleContainer.cs.meta -------------------------------------------------------------------------------- /Assets/Code/Window/Setting/TypeSettingWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Window/Setting/TypeSettingWindow.cs -------------------------------------------------------------------------------- /Assets/Code/Window/WindowTypeId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Window/WindowTypeId.cs -------------------------------------------------------------------------------- /Assets/Code/Window/WindowTypeId.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Code/Window/WindowTypeId.cs.meta -------------------------------------------------------------------------------- /Assets/DefaultVolumeProfile.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/DefaultVolumeProfile.asset -------------------------------------------------------------------------------- /Assets/DefaultVolumeProfile.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/DefaultVolumeProfile.asset.meta -------------------------------------------------------------------------------- /Assets/Plugins.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins.meta -------------------------------------------------------------------------------- /Assets/Plugins/CI.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 710ff57314894c8bbd7865ae1797a06e 3 | timeCreated: 1624559213 -------------------------------------------------------------------------------- /Assets/Plugins/CI/CI.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/CI/CI.zip -------------------------------------------------------------------------------- /Assets/Plugins/CI/CI.zip.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/CI/CI.zip.meta -------------------------------------------------------------------------------- /Assets/Plugins/CI/CIConfig.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/CI/CIConfig.asset -------------------------------------------------------------------------------- /Assets/Plugins/CI/CIConfig.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/CI/CIConfig.asset.meta -------------------------------------------------------------------------------- /Assets/Plugins/CI/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6d58b35ef2dd4272bbed3554bcfa549a 3 | timeCreated: 1624559213 -------------------------------------------------------------------------------- /Assets/Plugins/CI/Editor/Builder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/CI/Editor/Builder.cs -------------------------------------------------------------------------------- /Assets/Plugins/CI/Editor/Builder.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/CI/Editor/Builder.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/CI/Editor/CIConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/CI/Editor/CIConfig.cs -------------------------------------------------------------------------------- /Assets/Plugins/CI/Editor/CIConfig.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c6343eae76b641f6a5b3b52280b1061b 3 | timeCreated: 1635757319 -------------------------------------------------------------------------------- /Assets/Plugins/CI/Editor/IOSBuildPostprocessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/CI/Editor/IOSBuildPostprocessor.cs -------------------------------------------------------------------------------- /Assets/Plugins/CI/Editor/IOSBuildPostprocessor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e1bbf116ac514e44b3f24c5f821ef410 3 | timeCreated: 1635452773 -------------------------------------------------------------------------------- /Assets/Plugins/CI/Editor/Installer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/CI/Editor/Installer.cs -------------------------------------------------------------------------------- /Assets/Plugins/CI/Editor/Installer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/CI/Editor/Installer.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/CI/Editor/Navigator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/CI/Editor/Navigator.cs -------------------------------------------------------------------------------- /Assets/Plugins/CI/Editor/Navigator.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/CI/Editor/Navigator.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/CI/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/CI/Readme.md -------------------------------------------------------------------------------- /Assets/Plugins/CI/Readme.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/CI/Readme.md.meta -------------------------------------------------------------------------------- /Assets/Plugins/Demigiant.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/Demigiant.meta -------------------------------------------------------------------------------- /Assets/Plugins/Demigiant/DOTween.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/Demigiant/DOTween.meta -------------------------------------------------------------------------------- /Assets/Plugins/Demigiant/DOTween/DOTween.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/Demigiant/DOTween/DOTween.XML -------------------------------------------------------------------------------- /Assets/Plugins/Demigiant/DOTween/DOTween.XML.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/Demigiant/DOTween/DOTween.XML.meta -------------------------------------------------------------------------------- /Assets/Plugins/Demigiant/DOTween/DOTween.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/Demigiant/DOTween/DOTween.dll -------------------------------------------------------------------------------- /Assets/Plugins/Demigiant/DOTween/DOTween.dll.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/Demigiant/DOTween/DOTween.dll.mdb -------------------------------------------------------------------------------- /Assets/Plugins/Demigiant/DOTween/DOTween.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/Demigiant/DOTween/DOTween.dll.meta -------------------------------------------------------------------------------- /Assets/Plugins/Demigiant/DOTween/DOTween43.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/Demigiant/DOTween/DOTween43.dll -------------------------------------------------------------------------------- /Assets/Plugins/Demigiant/DOTween/DOTween43.dll.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/Demigiant/DOTween/DOTween43.dll.mdb -------------------------------------------------------------------------------- /Assets/Plugins/Demigiant/DOTween/DOTween43.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/Demigiant/DOTween/DOTween43.xml -------------------------------------------------------------------------------- /Assets/Plugins/Demigiant/DOTween/DOTween46.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/Demigiant/DOTween/DOTween46.dll -------------------------------------------------------------------------------- /Assets/Plugins/Demigiant/DOTween/DOTween46.dll.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/Demigiant/DOTween/DOTween46.dll.mdb -------------------------------------------------------------------------------- /Assets/Plugins/Demigiant/DOTween/DOTween46.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/Demigiant/DOTween/DOTween46.xml -------------------------------------------------------------------------------- /Assets/Plugins/Demigiant/DOTween/DOTween50.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/Demigiant/DOTween/DOTween50.dll -------------------------------------------------------------------------------- /Assets/Plugins/Demigiant/DOTween/DOTween50.dll.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/Demigiant/DOTween/DOTween50.dll.mdb -------------------------------------------------------------------------------- /Assets/Plugins/Demigiant/DOTween/DOTween50.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/Demigiant/DOTween/DOTween50.xml -------------------------------------------------------------------------------- /Assets/Plugins/Demigiant/DOTween/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/Demigiant/DOTween/Editor.meta -------------------------------------------------------------------------------- /Assets/Plugins/Demigiant/DOTween/Editor/Imgs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/Demigiant/DOTween/Editor/Imgs.meta -------------------------------------------------------------------------------- /Assets/Plugins/Demigiant/DOTween/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/Demigiant/DOTween/readme.txt -------------------------------------------------------------------------------- /Assets/Plugins/Demigiant/DOTween/readme.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/Demigiant/DOTween/readme.txt.meta -------------------------------------------------------------------------------- /Assets/Plugins/Demigiant/DOTweenPro Examples.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/Demigiant/DOTweenPro Examples.meta -------------------------------------------------------------------------------- /Assets/Plugins/Demigiant/DOTweenPro.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/Demigiant/DOTweenPro.meta -------------------------------------------------------------------------------- /Assets/Plugins/Demigiant/DOTweenPro/DOTweenPro.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/Demigiant/DOTweenPro/DOTweenPro.XML -------------------------------------------------------------------------------- /Assets/Plugins/Demigiant/DOTweenPro/DOTweenPro.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/Demigiant/DOTweenPro/DOTweenPro.dll -------------------------------------------------------------------------------- /Assets/Plugins/Demigiant/DOTweenPro/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/Demigiant/DOTweenPro/Editor.meta -------------------------------------------------------------------------------- /Assets/Plugins/Demigiant/DOTweenPro/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/Demigiant/DOTweenPro/readme.txt -------------------------------------------------------------------------------- /Assets/Plugins/Demigiant/DemiLib.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/Demigiant/DemiLib.meta -------------------------------------------------------------------------------- /Assets/Plugins/Demigiant/DemiLib/Core.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/Demigiant/DemiLib/Core.meta -------------------------------------------------------------------------------- /Assets/Plugins/Demigiant/DemiLib/Core/DemiLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/Demigiant/DemiLib/Core/DemiLib.dll -------------------------------------------------------------------------------- /Assets/Plugins/Demigiant/DemiLib/Core/DemiLib.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/Demigiant/DemiLib/Core/DemiLib.xml -------------------------------------------------------------------------------- /Assets/Plugins/Demigiant/DemiLib/Core/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/Demigiant/DemiLib/Core/Editor.meta -------------------------------------------------------------------------------- /Assets/Plugins/Demigiant/readme_DOTweenPro.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/Demigiant/readme_DOTweenPro.txt -------------------------------------------------------------------------------- /Assets/Plugins/ParticleEffectForUGUI.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/ParticleEffectForUGUI.meta -------------------------------------------------------------------------------- /Assets/Plugins/Sirenix.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/Sirenix.meta -------------------------------------------------------------------------------- /Assets/Plugins/Sirenix/Assemblies.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/Sirenix/Assemblies.meta -------------------------------------------------------------------------------- /Assets/Plugins/Sirenix/Assemblies/NoEditor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/Sirenix/Assemblies/NoEditor.meta -------------------------------------------------------------------------------- /Assets/Plugins/Sirenix/Assemblies/link.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/Sirenix/Assemblies/link.xml -------------------------------------------------------------------------------- /Assets/Plugins/Sirenix/Assemblies/link.xml.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/Sirenix/Assemblies/link.xml.meta -------------------------------------------------------------------------------- /Assets/Plugins/Sirenix/Demos.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/Sirenix/Demos.meta -------------------------------------------------------------------------------- /Assets/Plugins/Sirenix/Odin Inspector.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/Sirenix/Odin Inspector.meta -------------------------------------------------------------------------------- /Assets/Plugins/Sirenix/Odin Inspector/Assets.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/Sirenix/Odin Inspector/Assets.meta -------------------------------------------------------------------------------- /Assets/Plugins/Sirenix/Odin Inspector/Config.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/Sirenix/Odin Inspector/Config.meta -------------------------------------------------------------------------------- /Assets/Plugins/Sirenix/Odin Inspector/Modules.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/Sirenix/Odin Inspector/Modules.meta -------------------------------------------------------------------------------- /Assets/Plugins/Sirenix/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/Sirenix/Readme.txt -------------------------------------------------------------------------------- /Assets/Plugins/Sirenix/Readme.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/Sirenix/Readme.txt.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniTask.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/UniTask.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniTask/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/UniTask/Editor.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniTask/Editor/SplitterGUILayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/UniTask/Editor/SplitterGUILayout.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniTask/Runtime.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/UniTask/Runtime.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniTask/Runtime/AsyncLazy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/UniTask/Runtime/AsyncLazy.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniTask/Runtime/AsyncLazy.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/UniTask/Runtime/AsyncLazy.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniTask/Runtime/AsyncUnit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/UniTask/Runtime/AsyncUnit.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniTask/Runtime/AsyncUnit.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/UniTask/Runtime/AsyncUnit.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniTask/Runtime/Channel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/UniTask/Runtime/Channel.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniTask/Runtime/Channel.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/UniTask/Runtime/Channel.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniTask/Runtime/External.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/UniTask/Runtime/External.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniTask/Runtime/IUniTaskSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/UniTask/Runtime/IUniTaskSource.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniTask/Runtime/Internal.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/UniTask/Runtime/Internal.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniTask/Runtime/Internal/Error.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/UniTask/Runtime/Internal/Error.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniTask/Runtime/Linq.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/UniTask/Runtime/Linq.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniTask/Runtime/Linq/Aggregate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/UniTask/Runtime/Linq/Aggregate.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniTask/Runtime/Linq/All.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/UniTask/Runtime/Linq/All.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniTask/Runtime/Linq/All.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/UniTask/Runtime/Linq/All.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniTask/Runtime/Linq/Any.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/UniTask/Runtime/Linq/Any.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniTask/Runtime/Linq/Any.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/UniTask/Runtime/Linq/Any.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniTask/Runtime/Linq/Average.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/UniTask/Runtime/Linq/Average.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniTask/Runtime/Linq/Average.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/UniTask/Runtime/Linq/Average.tt -------------------------------------------------------------------------------- /Assets/Plugins/UniTask/Runtime/Linq/Buffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/UniTask/Runtime/Linq/Buffer.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniTask/Runtime/Linq/Buffer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/UniTask/Runtime/Linq/Buffer.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniTask/Runtime/Linq/Cast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/UniTask/Runtime/Linq/Cast.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniTask/Runtime/Linq/Cast.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/UniTask/Runtime/Linq/Cast.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniTask/Runtime/Linq/Concat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/UniTask/Runtime/Linq/Concat.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniTask/Runtime/Linq/Concat.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/UniTask/Runtime/Linq/Concat.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniTask/Runtime/Linq/Contains.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/UniTask/Runtime/Linq/Contains.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniTask/Runtime/Linq/Count.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/UniTask/Runtime/Linq/Count.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniTask/Runtime/Linq/Count.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/UniTask/Runtime/Linq/Count.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniTask/Runtime/Linq/Create.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/UniTask/Runtime/Linq/Create.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniTask/Runtime/Linq/Create.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/UniTask/Runtime/Linq/Create.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniTask/Runtime/Linq/Distinct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/UniTask/Runtime/Linq/Distinct.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniTask/Runtime/Linq/Do.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/UniTask/Runtime/Linq/Do.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniTask/Runtime/Linq/Do.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/UniTask/Runtime/Linq/Do.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniTask/Runtime/Linq/ElementAt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/UniTask/Runtime/Linq/ElementAt.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniTask/Runtime/Linq/Empty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/UniTask/Runtime/Linq/Empty.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniTask/Runtime/Linq/Empty.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/UniTask/Runtime/Linq/Empty.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniTask/Runtime/Linq/Except.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/UniTask/Runtime/Linq/Except.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniTask/Runtime/Linq/Except.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/UniTask/Runtime/Linq/Except.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniTask/Runtime/Linq/First.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/UniTask/Runtime/Linq/First.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniTask/Runtime/Linq/First.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/UniTask/Runtime/Linq/First.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniTask/Runtime/Linq/ForEach.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/UniTask/Runtime/Linq/ForEach.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniTask/Runtime/Linq/GroupBy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/UniTask/Runtime/Linq/GroupBy.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniTask/Runtime/Linq/GroupJoin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/UniTask/Runtime/Linq/GroupJoin.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniTask/Runtime/Linq/Intersect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/UniTask/Runtime/Linq/Intersect.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniTask/Runtime/Linq/Join.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/UniTask/Runtime/Linq/Join.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniTask/Runtime/Linq/Join.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/UniTask/Runtime/Linq/Join.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniTask/Runtime/Linq/Last.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/UniTask/Runtime/Linq/Last.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniTask/Runtime/Linq/Last.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/UniTask/Runtime/Linq/Last.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniTask/Runtime/Linq/LongCount.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/UniTask/Runtime/Linq/LongCount.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniTask/Runtime/Linq/Max.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/UniTask/Runtime/Linq/Max.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniTask/Runtime/Linq/Max.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/UniTask/Runtime/Linq/Max.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniTask/Runtime/Linq/Merge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/UniTask/Runtime/Linq/Merge.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniTask/Runtime/Linq/Merge.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/UniTask/Runtime/Linq/Merge.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniTask/Runtime/Linq/Min.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/UniTask/Runtime/Linq/Min.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniTask/Runtime/Linq/Min.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/UniTask/Runtime/Linq/Min.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniTask/Runtime/Linq/MinMax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/UniTask/Runtime/Linq/MinMax.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniTask/Runtime/Linq/MinMax.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/UniTask/Runtime/Linq/MinMax.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniTask/Runtime/Linq/MinMax.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/UniTask/Runtime/Linq/MinMax.tt -------------------------------------------------------------------------------- /Assets/Plugins/UniTask/Runtime/Linq/MinMax.tt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/UniTask/Runtime/Linq/MinMax.tt.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniTask/Runtime/Linq/Never.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/UniTask/Runtime/Linq/Never.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniTask/Runtime/Linq/Never.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/UniTask/Runtime/Linq/Never.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniTask/Runtime/Linq/OfType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/UniTask/Runtime/Linq/OfType.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniTask/Runtime/Linq/OfType.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/UniTask/Runtime/Linq/OfType.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniTask/Runtime/Linq/OrderBy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/UniTask/Runtime/Linq/OrderBy.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniTask/Runtime/Linq/Pairwise.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/UniTask/Runtime/Linq/Pairwise.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniTask/Runtime/Linq/Publish.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/UniTask/Runtime/Linq/Publish.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniTask/Runtime/Linq/Queue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/UniTask/Runtime/Linq/Queue.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniTask/Runtime/Linq/Queue.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/UniTask/Runtime/Linq/Queue.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniTask/Runtime/Linq/Range.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/UniTask/Runtime/Linq/Range.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniTask/Runtime/Linq/Range.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/UniTask/Runtime/Linq/Range.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniTask/Runtime/Linq/Repeat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/UniTask/Runtime/Linq/Repeat.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniTask/Runtime/Linq/Repeat.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/UniTask/Runtime/Linq/Repeat.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniTask/Runtime/Linq/Return.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/UniTask/Runtime/Linq/Return.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniTask/Runtime/Linq/Return.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/UniTask/Runtime/Linq/Return.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniTask/Runtime/Linq/Reverse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/UniTask/Runtime/Linq/Reverse.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniTask/Runtime/Linq/Select.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/UniTask/Runtime/Linq/Select.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniTask/Runtime/Linq/Select.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/UniTask/Runtime/Linq/Select.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniTask/Runtime/Linq/SelectMany.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/UniTask/Runtime/Linq/SelectMany.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniTask/Runtime/Linq/Single.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/UniTask/Runtime/Linq/Single.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniTask/Runtime/Linq/Single.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/UniTask/Runtime/Linq/Single.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniTask/Runtime/Linq/Skip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/UniTask/Runtime/Linq/Skip.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniTask/Runtime/Linq/SkipLast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/UniTask/Runtime/Linq/SkipLast.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniTask/Runtime/Linq/Sum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/UniTask/Runtime/Linq/Sum.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniTask/Runtime/Linq/Sum.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/UniTask/Runtime/Linq/Sum.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniTask/Runtime/Linq/Sum.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/UniTask/Runtime/Linq/Sum.tt -------------------------------------------------------------------------------- /Assets/Plugins/UniTask/Runtime/Linq/Sum.tt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/UniTask/Runtime/Linq/Sum.tt.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniTask/Runtime/Linq/Take.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/UniTask/Runtime/Linq/Take.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniTask/Runtime/Linq/TakeLast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/UniTask/Runtime/Linq/TakeLast.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniTask/Runtime/Linq/Throw.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/UniTask/Runtime/Linq/Throw.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniTask/Runtime/Linq/ToArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/UniTask/Runtime/Linq/ToArray.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniTask/Runtime/Linq/ToList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/UniTask/Runtime/Linq/ToList.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniTask/Runtime/Linq/ToLookup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/UniTask/Runtime/Linq/ToLookup.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniTask/Runtime/Linq/Union.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/UniTask/Runtime/Linq/Union.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniTask/Runtime/Linq/Where.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/UniTask/Runtime/Linq/Where.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniTask/Runtime/Linq/Zip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/UniTask/Runtime/Linq/Zip.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniTask/Runtime/Linq/Zip.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/UniTask/Runtime/Linq/Zip.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniTask/Runtime/Progress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/UniTask/Runtime/Progress.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniTask/Runtime/Progress.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/UniTask/Runtime/Progress.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniTask/Runtime/TaskPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/UniTask/Runtime/TaskPool.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniTask/Runtime/TaskPool.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/UniTask/Runtime/TaskPool.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniTask/Runtime/TriggerEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/UniTask/Runtime/TriggerEvent.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniTask/Runtime/Triggers.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/UniTask/Runtime/Triggers.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniTask/Runtime/UniTask.Delay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/UniTask/Runtime/UniTask.Delay.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniTask/Runtime/UniTask.Run.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/UniTask/Runtime/UniTask.Run.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniTask/Runtime/UniTask.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/UniTask/Runtime/UniTask.asmdef -------------------------------------------------------------------------------- /Assets/Plugins/UniTask/Runtime/UniTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/UniTask/Runtime/UniTask.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniTask/Runtime/UniTask.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/UniTask/Runtime/UniTask.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/UniTask/Runtime/UniTaskVoid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/UniTask/Runtime/UniTaskVoid.cs -------------------------------------------------------------------------------- /Assets/Plugins/UniTask/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/UniTask/package.json -------------------------------------------------------------------------------- /Assets/Plugins/UniTask/package.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/UniTask/package.json.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/Zenject.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/Zenject/LICENSE.txt -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/LICENSE.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/Zenject/LICENSE.txt.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/OptionalExtras.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/Zenject/OptionalExtras.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/OptionalExtras/Async/Tests/Async.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 008eb6ebb56c4b35ba2c89cd91b20186 3 | timeCreated: 1593627945 -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/BindFeatures/TestMoveIntoAllSubContainers.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/BindFeatures/TestMoveIntoDirectSubContainers.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/ReadMe.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=https://github.com/svermeulen/Extenject 3 | -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/ReadMe.url.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/Zenject/ReadMe.url.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/Zenject/Source.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Binding.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/Zenject/Source/Binding.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/Zenject/Source/Editor.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Factories.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/Zenject/Source/Factories.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Injection.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/Zenject/Source/Injection.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Install.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/Zenject/Source/Install.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Internal.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/Zenject/Source/Internal.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Internal/Func.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/Zenject/Source/Internal/Func.cs -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Internal/Log.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/Zenject/Source/Internal/Log.cs -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Main.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/Zenject/Source/Main.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Main/BindingId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/Zenject/Source/Main/BindingId.cs -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Main/LookupId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/Zenject/Source/Main/LookupId.cs -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Providers.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/Zenject/Source/Providers.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Runtime.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/Zenject/Source/Runtime.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Usage.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/Zenject/Source/Usage.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Usage/link.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/Zenject/Source/Usage/link.xml -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Util.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/Zenject/Source/Util.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Util/UnityUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/Zenject/Source/Util/UnityUtil.cs -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Util/ZenPools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/Zenject/Source/Util/ZenPools.cs -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Source/Validation.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/Zenject/Source/Validation.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Version.txt: -------------------------------------------------------------------------------- 1 | 9.1.0 2 | -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/Version.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/Zenject/Version.txt.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/link.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/Zenject/link.xml -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/link.xml.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/Zenject/link.xml.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/Zenject/package.json -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/package.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/Zenject/package.json.meta -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/zenject.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Zenject" 3 | } 4 | -------------------------------------------------------------------------------- /Assets/Plugins/Zenject/zenject.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Plugins/Zenject/zenject.asmdef.meta -------------------------------------------------------------------------------- /Assets/Resources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Resources.meta -------------------------------------------------------------------------------- /Assets/Resources/Balls.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Resources/Balls.meta -------------------------------------------------------------------------------- /Assets/Resources/Balls/Ball.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Resources/Balls/Ball.prefab -------------------------------------------------------------------------------- /Assets/Resources/Balls/Ball.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Resources/Balls/Ball.prefab.meta -------------------------------------------------------------------------------- /Assets/Resources/DOTweenSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Resources/DOTweenSettings.asset -------------------------------------------------------------------------------- /Assets/Resources/DOTweenSettings.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Resources/DOTweenSettings.asset.meta -------------------------------------------------------------------------------- /Assets/Resources/Huds.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Resources/Huds.meta -------------------------------------------------------------------------------- /Assets/Resources/Huds/GameHud.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Resources/Huds/GameHud.prefab -------------------------------------------------------------------------------- /Assets/Resources/Huds/GameHud.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Resources/Huds/GameHud.prefab.meta -------------------------------------------------------------------------------- /Assets/Resources/Huds/LoadingCurtain.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Resources/Huds/LoadingCurtain.prefab -------------------------------------------------------------------------------- /Assets/Resources/Huds/MenuHud.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Resources/Huds/MenuHud.prefab -------------------------------------------------------------------------------- /Assets/Resources/Huds/MenuHud.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Resources/Huds/MenuHud.prefab.meta -------------------------------------------------------------------------------- /Assets/Resources/Infrastructure.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Resources/Infrastructure.meta -------------------------------------------------------------------------------- /Assets/Resources/Levels.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Resources/Levels.meta -------------------------------------------------------------------------------- /Assets/Resources/Levels/Level 1.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Resources/Levels/Level 1.prefab -------------------------------------------------------------------------------- /Assets/Resources/Levels/Level 1.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Resources/Levels/Level 1.prefab.meta -------------------------------------------------------------------------------- /Assets/Resources/Players.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Resources/Players.meta -------------------------------------------------------------------------------- /Assets/Resources/Players/Player.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Resources/Players/Player.prefab -------------------------------------------------------------------------------- /Assets/Resources/Players/Player.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Resources/Players/Player.prefab.meta -------------------------------------------------------------------------------- /Assets/Resources/ProjectContext.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Resources/ProjectContext.prefab -------------------------------------------------------------------------------- /Assets/Resources/ProjectContext.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Resources/ProjectContext.prefab.meta -------------------------------------------------------------------------------- /Assets/Resources/StaticData.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Resources/StaticData.meta -------------------------------------------------------------------------------- /Assets/Resources/StaticData/Balance.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Resources/StaticData/Balance.meta -------------------------------------------------------------------------------- /Assets/Resources/StaticData/Chapters.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Resources/StaticData/Chapters.meta -------------------------------------------------------------------------------- /Assets/Resources/StaticData/Items.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Resources/StaticData/Items.meta -------------------------------------------------------------------------------- /Assets/Resources/StaticData/Levels.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Resources/StaticData/Levels.meta -------------------------------------------------------------------------------- /Assets/Resources/StaticData/Random.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Resources/StaticData/Random.meta -------------------------------------------------------------------------------- /Assets/Resources/StaticData/Score.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Resources/StaticData/Score.meta -------------------------------------------------------------------------------- /Assets/Resources/StaticData/Sounds.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Resources/StaticData/Sounds.meta -------------------------------------------------------------------------------- /Assets/Resources/StaticData/Sounds/Sounds.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Resources/StaticData/Sounds/Sounds.asset -------------------------------------------------------------------------------- /Assets/Resources/StaticData/Vibration.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Resources/StaticData/Vibration.meta -------------------------------------------------------------------------------- /Assets/Resources/Tests.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Resources/Tests.meta -------------------------------------------------------------------------------- /Assets/Resources/UI.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Resources/UI.meta -------------------------------------------------------------------------------- /Assets/Resources/UI/Menu.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Resources/UI/Menu.meta -------------------------------------------------------------------------------- /Assets/Resources/UI/Menu/ItemLevel.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Resources/UI/Menu/ItemLevel.prefab -------------------------------------------------------------------------------- /Assets/Resources/UI/Menu/ItemLevel.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Resources/UI/Menu/ItemLevel.prefab.meta -------------------------------------------------------------------------------- /Assets/Resources/UI/StartLevelInfo.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Resources/UI/StartLevelInfo.prefab -------------------------------------------------------------------------------- /Assets/Resources/UI/StartLevelInfo.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Resources/UI/StartLevelInfo.prefab.meta -------------------------------------------------------------------------------- /Assets/Resources/UI/UiRoot.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Resources/UI/UiRoot.prefab -------------------------------------------------------------------------------- /Assets/Resources/UI/UiRoot.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Resources/UI/UiRoot.prefab.meta -------------------------------------------------------------------------------- /Assets/Resources/UI/Widget.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Resources/UI/Widget.prefab -------------------------------------------------------------------------------- /Assets/Resources/UI/Widget.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Resources/UI/Widget.prefab.meta -------------------------------------------------------------------------------- /Assets/Resources/UI/Windows.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Resources/UI/Windows.meta -------------------------------------------------------------------------------- /Assets/Resources/UI/Windows/Finish.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Resources/UI/Windows/Finish.meta -------------------------------------------------------------------------------- /Assets/Resources/URP.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Resources/URP.meta -------------------------------------------------------------------------------- /Assets/Resources/URP/URP Asset.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Resources/URP/URP Asset.asset -------------------------------------------------------------------------------- /Assets/Resources/URP/URP Asset.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Resources/URP/URP Asset.asset.meta -------------------------------------------------------------------------------- /Assets/Resources/URP/URP Asset_Renderer.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Resources/URP/URP Asset_Renderer.asset -------------------------------------------------------------------------------- /Assets/ResourcesStatic.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/ResourcesStatic.meta -------------------------------------------------------------------------------- /Assets/ResourcesStatic/Animation.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/ResourcesStatic/Animation.meta -------------------------------------------------------------------------------- /Assets/ResourcesStatic/Animation/EndLevel.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/ResourcesStatic/Animation/EndLevel.meta -------------------------------------------------------------------------------- /Assets/ResourcesStatic/Animation/Player.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/ResourcesStatic/Animation/Player.meta -------------------------------------------------------------------------------- /Assets/ResourcesStatic/Animation/UI.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/ResourcesStatic/Animation/UI.meta -------------------------------------------------------------------------------- /Assets/ResourcesStatic/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/ResourcesStatic/Materials.meta -------------------------------------------------------------------------------- /Assets/ResourcesStatic/Materials/Back_mat.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/ResourcesStatic/Materials/Back_mat.mat -------------------------------------------------------------------------------- /Assets/ResourcesStatic/Materials/Ball.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/ResourcesStatic/Materials/Ball.mat -------------------------------------------------------------------------------- /Assets/ResourcesStatic/Materials/Ball.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/ResourcesStatic/Materials/Ball.mat.meta -------------------------------------------------------------------------------- /Assets/ResourcesStatic/Materials/Eye_mat.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/ResourcesStatic/Materials/Eye_mat.mat -------------------------------------------------------------------------------- /Assets/ResourcesStatic/Materials/Mouth_mat.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/ResourcesStatic/Materials/Mouth_mat.mat -------------------------------------------------------------------------------- /Assets/ResourcesStatic/Materials/Player_1.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/ResourcesStatic/Materials/Player_1.mat -------------------------------------------------------------------------------- /Assets/ResourcesStatic/Materials/Player_2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/ResourcesStatic/Materials/Player_2.mat -------------------------------------------------------------------------------- /Assets/ResourcesStatic/Materials/Pupil_mat.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/ResourcesStatic/Materials/Pupil_mat.mat -------------------------------------------------------------------------------- /Assets/ResourcesStatic/Materials/Skybox_Mat.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/ResourcesStatic/Materials/Skybox_Mat.mat -------------------------------------------------------------------------------- /Assets/ResourcesStatic/Models.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/ResourcesStatic/Models.meta -------------------------------------------------------------------------------- /Assets/ResourcesStatic/Prefabs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/ResourcesStatic/Prefabs.meta -------------------------------------------------------------------------------- /Assets/ResourcesStatic/Prefabs/Game.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/ResourcesStatic/Prefabs/Game.meta -------------------------------------------------------------------------------- /Assets/ResourcesStatic/Prefabs/Game/End.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/ResourcesStatic/Prefabs/Game/End.prefab -------------------------------------------------------------------------------- /Assets/ResourcesStatic/Prefabs/UI.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/ResourcesStatic/Prefabs/UI.meta -------------------------------------------------------------------------------- /Assets/ResourcesStatic/Sounds.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/ResourcesStatic/Sounds.meta -------------------------------------------------------------------------------- /Assets/ResourcesStatic/Texture.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/ResourcesStatic/Texture.meta -------------------------------------------------------------------------------- /Assets/ResourcesStatic/Texture/Road Texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/ResourcesStatic/Texture/Road Texture.png -------------------------------------------------------------------------------- /Assets/ResourcesStatic/UI.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/ResourcesStatic/UI.meta -------------------------------------------------------------------------------- /Assets/ResourcesStatic/UI/Point_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/ResourcesStatic/UI/Point_off.png -------------------------------------------------------------------------------- /Assets/ResourcesStatic/UI/Point_off.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/ResourcesStatic/UI/Point_off.png.meta -------------------------------------------------------------------------------- /Assets/ResourcesStatic/UI/icon_lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/ResourcesStatic/UI/icon_lock.png -------------------------------------------------------------------------------- /Assets/ResourcesStatic/UI/icon_lock.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/ResourcesStatic/UI/icon_lock.png.meta -------------------------------------------------------------------------------- /Assets/ResourcesStatic/UI/switcher_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/ResourcesStatic/UI/switcher_big.png -------------------------------------------------------------------------------- /Assets/ResourcesStatic/UI/switcher_big.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/ResourcesStatic/UI/switcher_big.png.meta -------------------------------------------------------------------------------- /Assets/ResourcesStatic/VFX.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/ResourcesStatic/VFX.meta -------------------------------------------------------------------------------- /Assets/ResourcesStatic/VFX/Casual RPG VFX.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/ResourcesStatic/VFX/Casual RPG VFX.meta -------------------------------------------------------------------------------- /Assets/ResourcesStatic/VFX/Lana Studio.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/ResourcesStatic/VFX/Lana Studio.meta -------------------------------------------------------------------------------- /Assets/Scenes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Scenes.meta -------------------------------------------------------------------------------- /Assets/Scenes/Game.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Scenes/Game.unity -------------------------------------------------------------------------------- /Assets/Scenes/Game.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Scenes/Game.unity.meta -------------------------------------------------------------------------------- /Assets/Scenes/Initial.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Scenes/Initial.unity -------------------------------------------------------------------------------- /Assets/Scenes/Initial.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Scenes/Initial.unity.meta -------------------------------------------------------------------------------- /Assets/Scenes/Menu.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Scenes/Menu.unity -------------------------------------------------------------------------------- /Assets/Scenes/Menu.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Scenes/Menu.unity.meta -------------------------------------------------------------------------------- /Assets/Shaders.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Shaders.meta -------------------------------------------------------------------------------- /Assets/Shaders/Custom_UIImageShader.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Shaders/Custom_UIImageShader.mat -------------------------------------------------------------------------------- /Assets/Shaders/Custom_UIImageShader.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Shaders/Custom_UIImageShader.mat.meta -------------------------------------------------------------------------------- /Assets/Shaders/Fill Shader World.shadergraph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Shaders/Fill Shader World.shadergraph -------------------------------------------------------------------------------- /Assets/Shaders/Toony Colors Pro.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Shaders/Toony Colors Pro.meta -------------------------------------------------------------------------------- /Assets/Shaders/Toony Colors Pro/Demo TCP2.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Shaders/Toony Colors Pro/Demo TCP2.meta -------------------------------------------------------------------------------- /Assets/Shaders/Toony Colors Pro/Demo TCP2/Common Demo Assets/Kino Bloom/KinoBloom.Runtime.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "KinoBloom.Runtime" 3 | } 4 | -------------------------------------------------------------------------------- /Assets/Shaders/Toony Colors Pro/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Shaders/Toony Colors Pro/Editor.meta -------------------------------------------------------------------------------- /Assets/Shaders/Toony Colors Pro/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Shaders/Toony Colors Pro/Scripts.meta -------------------------------------------------------------------------------- /Assets/Shaders/Toony Colors Pro/Shaders.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Shaders/Toony Colors Pro/Shaders.meta -------------------------------------------------------------------------------- /Assets/Shaders/Toony Colors Pro/Textures.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Shaders/Toony Colors Pro/Textures.meta -------------------------------------------------------------------------------- /Assets/Shaders/UIImageShader.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Shaders/UIImageShader.shader -------------------------------------------------------------------------------- /Assets/Shaders/UIImageShader.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Shaders/UIImageShader.shader.meta -------------------------------------------------------------------------------- /Assets/Tests.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Tests.meta -------------------------------------------------------------------------------- /Assets/Tests/Dependencies.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Tests/Dependencies.meta -------------------------------------------------------------------------------- /Assets/Tests/Dependencies/Castle.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Tests/Dependencies/Castle.Core.dll -------------------------------------------------------------------------------- /Assets/Tests/Dependencies/Castle.Core.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Tests/Dependencies/Castle.Core.dll.meta -------------------------------------------------------------------------------- /Assets/Tests/Dependencies/FluentAssertions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Tests/Dependencies/FluentAssertions.dll -------------------------------------------------------------------------------- /Assets/Tests/Dependencies/NSubstitute.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Tests/Dependencies/NSubstitute.dll -------------------------------------------------------------------------------- /Assets/Tests/Dependencies/NSubstitute.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Tests/Dependencies/NSubstitute.dll.meta -------------------------------------------------------------------------------- /Assets/Tests/Dependencies/System.Buffers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Tests/Dependencies/System.Buffers.dll -------------------------------------------------------------------------------- /Assets/Tests/Dependencies/System.Memory.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Tests/Dependencies/System.Memory.dll -------------------------------------------------------------------------------- /Assets/Tests/EditMode.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Tests/EditMode.meta -------------------------------------------------------------------------------- /Assets/Tests/EditMode/BuildTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Tests/EditMode/BuildTest.cs -------------------------------------------------------------------------------- /Assets/Tests/EditMode/BuildTest.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Tests/EditMode/BuildTest.cs.meta -------------------------------------------------------------------------------- /Assets/Tests/EditMode/GameFactoryResourcesTests.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8ce8d92875e209b47a3475e72bd7398c -------------------------------------------------------------------------------- /Assets/Tests/EditMode/GuidDuplicationTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Tests/EditMode/GuidDuplicationTest.cs -------------------------------------------------------------------------------- /Assets/Tests/EditMode/GuidDuplicationTest.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1b3131effe40cfd4581fdcb0043e9c8f -------------------------------------------------------------------------------- /Assets/Tests/EditMode/LevelServiceTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Tests/EditMode/LevelServiceTest.cs -------------------------------------------------------------------------------- /Assets/Tests/EditMode/LevelServiceTest.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c884c11ccc7cbb149b87d5773cdc0838 -------------------------------------------------------------------------------- /Assets/Tests/EditMode/ResourcesPrefabValidationTests.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 93185276aeb364849b386a4b092dac2c -------------------------------------------------------------------------------- /Assets/Tests/EditMode/SceneValidationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Tests/EditMode/SceneValidationTests.cs -------------------------------------------------------------------------------- /Assets/Tests/EditMode/SoundEnumFilesTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Tests/EditMode/SoundEnumFilesTests.cs -------------------------------------------------------------------------------- /Assets/Tests/EditMode/SoundEnumFilesTests.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c5d19d04b8cae7c4baec83ba54246a08 -------------------------------------------------------------------------------- /Assets/Tests/EditMode/StaticDataResourcesTests.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 822cd2503d707fe4887463dd24dacd50 -------------------------------------------------------------------------------- /Assets/Tests/EditMode/Tests.EditMode.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Tests/EditMode/Tests.EditMode.asmdef -------------------------------------------------------------------------------- /Assets/Tests/EditMode/UIFactoryResourcesTests.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9576c478bac3cf145a620bd1d4479620 -------------------------------------------------------------------------------- /Assets/Tests/EditMode/VibrationEnumFileTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Tests/EditMode/VibrationEnumFileTests.cs -------------------------------------------------------------------------------- /Assets/Tests/EditMode/VibrationEnumFileTests.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fcc156dd39b9b5643a075943aeaf945f -------------------------------------------------------------------------------- /Assets/Tests/PlayMode.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Tests/PlayMode.meta -------------------------------------------------------------------------------- /Assets/Tests/PlayMode/GameFactoryPlayModeTests.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e90ec5365f487c548957d3f23c4679ab -------------------------------------------------------------------------------- /Assets/Tests/PlayMode/PMTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Tests/PlayMode/PMTest.cs -------------------------------------------------------------------------------- /Assets/Tests/PlayMode/PMTest.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Tests/PlayMode/PMTest.cs.meta -------------------------------------------------------------------------------- /Assets/Tests/PlayMode/Tests.PlayMode.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Tests/PlayMode/Tests.PlayMode.asmdef -------------------------------------------------------------------------------- /Assets/Tests/PlayMode/UIFactoryPlayModeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/Tests/PlayMode/UIFactoryPlayModeTests.cs -------------------------------------------------------------------------------- /Assets/Tests/PlayMode/UIFactoryPlayModeTests.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bc766da7d20027a4e936b603efc1c17d -------------------------------------------------------------------------------- /Assets/Tests/PlayMode/WidgetProviderPlayModeTests.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cdc5356b5fc1dd04bbf13c3ca7ece8e8 -------------------------------------------------------------------------------- /Assets/TextMesh Pro.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/TextMesh Pro.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Documentation.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/TextMesh Pro/Documentation.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Fonts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/TextMesh Pro/Fonts.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Fonts/LiberationSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/TextMesh Pro/Fonts/LiberationSans.ttf -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/TextMesh Pro/Resources.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/LineBreaking Leading Characters.txt: -------------------------------------------------------------------------------- 1 | ([{〔〈《「『【〘〖〝‘“⦅«$—…‥〳〴〵\[({£¥"々〇$¥₩ # -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Style Sheets.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/TextMesh Pro/Resources/Style Sheets.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/TextMesh Pro/Shaders.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/SDFFunctions.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/TextMesh Pro/Shaders/SDFFunctions.hlsl -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_Bitmap.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/TextMesh Pro/Shaders/TMP_Bitmap.shader -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_SDF SSD.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/TextMesh Pro/Shaders/TMP_SDF SSD.shader -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_SDF.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/TextMesh Pro/Shaders/TMP_SDF.shader -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_SDF.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/TextMesh Pro/Shaders/TMP_SDF.shader.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_Sprite.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/TextMesh Pro/Shaders/TMP_Sprite.shader -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMPro.cginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/TextMesh Pro/Shaders/TMPro.cginc -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMPro.cginc.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/TextMesh Pro/Shaders/TMPro.cginc.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMPro_Mobile.cginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/TextMesh Pro/Shaders/TMPro_Mobile.cginc -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMPro_Surface.cginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/TextMesh Pro/Shaders/TMPro_Surface.cginc -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Sprites.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/TextMesh Pro/Sprites.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Sprites/EmojiOne.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/TextMesh Pro/Sprites/EmojiOne.json -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Sprites/EmojiOne.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/TextMesh Pro/Sprites/EmojiOne.json.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Sprites/EmojiOne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/TextMesh Pro/Sprites/EmojiOne.png -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Sprites/EmojiOne.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/TextMesh Pro/Sprites/EmojiOne.png.meta -------------------------------------------------------------------------------- /Assets/ThirdParty.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/ThirdParty.meta -------------------------------------------------------------------------------- /Assets/ThirdParty/NiceVibrations.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/ThirdParty/NiceVibrations.meta -------------------------------------------------------------------------------- /Assets/ThirdParty/NiceVibrations/Common.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/ThirdParty/NiceVibrations/Common.meta -------------------------------------------------------------------------------- /Assets/ThirdParty/NiceVibrations/Demos.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/ThirdParty/NiceVibrations/Demos.meta -------------------------------------------------------------------------------- /Assets/ThirdParty/NiceVibrations/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/ThirdParty/NiceVibrations/license.txt -------------------------------------------------------------------------------- /Assets/ThirdParty/NiceVibrations/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/ThirdParty/NiceVibrations/readme.txt -------------------------------------------------------------------------------- /Assets/ThirdParty/StompyRobot.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/ThirdParty/StompyRobot.meta -------------------------------------------------------------------------------- /Assets/ThirdParty/StompyRobot/SRDebugger.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/ThirdParty/StompyRobot/SRDebugger.meta -------------------------------------------------------------------------------- /Assets/ThirdParty/StompyRobot/SRDebugger/Scripts/Services/ServiceSelectors.cs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Assets/ThirdParty/StompyRobot/SRF.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/ThirdParty/StompyRobot/SRF.meta -------------------------------------------------------------------------------- /Assets/ThirdParty/StompyRobot/SRF/External.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/ThirdParty/StompyRobot/SRF/External.meta -------------------------------------------------------------------------------- /Assets/ThirdParty/StompyRobot/SRF/Internal.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/ThirdParty/StompyRobot/SRF/Internal.meta -------------------------------------------------------------------------------- /Assets/ThirdParty/StompyRobot/SRF/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/ThirdParty/StompyRobot/SRF/LICENSE -------------------------------------------------------------------------------- /Assets/ThirdParty/StompyRobot/SRF/LICENSE.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/ThirdParty/StompyRobot/SRF/LICENSE.meta -------------------------------------------------------------------------------- /Assets/ThirdParty/StompyRobot/SRF/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/ThirdParty/StompyRobot/SRF/README.md -------------------------------------------------------------------------------- /Assets/ThirdParty/StompyRobot/SRF/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/ThirdParty/StompyRobot/SRF/Scripts.meta -------------------------------------------------------------------------------- /Assets/ThirdParty/StompyRobot/SRF/StompyRobot.SRF.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "StompyRobot.SRF" 3 | } 4 | -------------------------------------------------------------------------------- /Assets/ThirdParty/StompyRobot/SROptions.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Assets/ThirdParty/StompyRobot/SROptions.meta -------------------------------------------------------------------------------- /BuilderDependencies/TestResultParser.cake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/BuilderDependencies/TestResultParser.cake -------------------------------------------------------------------------------- /BuilderDependencies/UnityLogParser.cake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/BuilderDependencies/UnityLogParser.cake -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Dockerfile -------------------------------------------------------------------------------- /Gifs/GIf_6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Gifs/GIf_6.gif -------------------------------------------------------------------------------- /Gifs/Gif_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Gifs/Gif_1.gif -------------------------------------------------------------------------------- /Gifs/Gif_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Gifs/Gif_2.gif -------------------------------------------------------------------------------- /Gifs/Gif_3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Gifs/Gif_3.gif -------------------------------------------------------------------------------- /Gifs/Gif_4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Gifs/Gif_4.gif -------------------------------------------------------------------------------- /Gifs/Gif_5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Gifs/Gif_5.gif -------------------------------------------------------------------------------- /Images/Image_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Images/Image_1.png -------------------------------------------------------------------------------- /Images/Image_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Images/Image_2.png -------------------------------------------------------------------------------- /Images/Image_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Images/Image_3.png -------------------------------------------------------------------------------- /Images/Image_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Images/Image_4.png -------------------------------------------------------------------------------- /Images/Image_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Images/Image_5.png -------------------------------------------------------------------------------- /Images/Image_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Images/Image_6.png -------------------------------------------------------------------------------- /Packages/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Packages/manifest.json -------------------------------------------------------------------------------- /Packages/packages-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/Packages/packages-lock.json -------------------------------------------------------------------------------- /ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /ProjectSettings/BurstAotSettings_Android.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/ProjectSettings/BurstAotSettings_Android.json -------------------------------------------------------------------------------- /ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/CommonBurstAotSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/ProjectSettings/CommonBurstAotSettings.json -------------------------------------------------------------------------------- /ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/MemorySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/ProjectSettings/MemorySettings.asset -------------------------------------------------------------------------------- /ProjectSettings/MultiplayerManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/ProjectSettings/MultiplayerManager.asset -------------------------------------------------------------------------------- /ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /ProjectSettings/PackageManagerSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/ProjectSettings/PackageManagerSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/ProjectSettings/PresetManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/ProjectSettings/ProjectVersion.txt -------------------------------------------------------------------------------- /ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /ProjectSettings/SceneTemplateSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/ProjectSettings/SceneTemplateSettings.json -------------------------------------------------------------------------------- /ProjectSettings/ShaderGraphSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/ProjectSettings/ShaderGraphSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /ProjectSettings/TimelineSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/ProjectSettings/TimelineSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ToonyColorsPro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/ProjectSettings/ToonyColorsPro.json -------------------------------------------------------------------------------- /ProjectSettings/URPProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/ProjectSettings/URPProjectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/ProjectSettings/VFXManager.asset -------------------------------------------------------------------------------- /ProjectSettings/VersionControlSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/ProjectSettings/VersionControlSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/ProjectSettings/XRSettings.asset -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/README.md -------------------------------------------------------------------------------- /bot/BotLib.Abstractions.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/bot/BotLib.Abstractions.deps.json -------------------------------------------------------------------------------- /bot/BotLib.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinlessDevil/ZumaClone/HEAD/bot/BotLib.Abstractions.dll -------------------------------------------------------------------------------- /sort.js: -------------------------------------------------------------------------------- 1 | 2 | --------------------------------------------------------------------------------