├── .gitignore ├── Assets ├── Noise.unity ├── Noise.unity.meta ├── Noises.meta ├── Noises │ ├── Clouds3.png │ └── Clouds3.png.meta ├── Pixel Sort - Canvas.prefab ├── Pixel Sort - Canvas.prefab.meta ├── PixelSort.cs ├── PixelSort.cs.meta ├── PixelSorter.compute ├── PixelSorter.compute.meta ├── Pixels.unity ├── Pixels.unity.meta ├── island.png ├── island.png.meta ├── pexels-photo-1726310.jpeg └── pexels-photo-1726310.jpeg.meta ├── Packages └── manifest.json ├── ProjectSettings ├── AudioManager.asset ├── ClusterInputManager.asset ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── InputManager.asset ├── NavMeshAreas.asset ├── Physics2DSettings.asset ├── PresetManager.asset ├── ProjectSettings.asset ├── ProjectVersion.txt ├── QualitySettings.asset ├── TagManager.asset ├── TimeManager.asset ├── UnityConnectSettings.asset ├── VFXManager.asset └── XRSettings.asset └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenizBicer/Pixel-Sorting/HEAD/.gitignore -------------------------------------------------------------------------------- /Assets/Noise.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenizBicer/Pixel-Sorting/HEAD/Assets/Noise.unity -------------------------------------------------------------------------------- /Assets/Noise.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenizBicer/Pixel-Sorting/HEAD/Assets/Noise.unity.meta -------------------------------------------------------------------------------- /Assets/Noises.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenizBicer/Pixel-Sorting/HEAD/Assets/Noises.meta -------------------------------------------------------------------------------- /Assets/Noises/Clouds3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenizBicer/Pixel-Sorting/HEAD/Assets/Noises/Clouds3.png -------------------------------------------------------------------------------- /Assets/Noises/Clouds3.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenizBicer/Pixel-Sorting/HEAD/Assets/Noises/Clouds3.png.meta -------------------------------------------------------------------------------- /Assets/Pixel Sort - Canvas.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenizBicer/Pixel-Sorting/HEAD/Assets/Pixel Sort - Canvas.prefab -------------------------------------------------------------------------------- /Assets/Pixel Sort - Canvas.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenizBicer/Pixel-Sorting/HEAD/Assets/Pixel Sort - Canvas.prefab.meta -------------------------------------------------------------------------------- /Assets/PixelSort.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenizBicer/Pixel-Sorting/HEAD/Assets/PixelSort.cs -------------------------------------------------------------------------------- /Assets/PixelSort.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenizBicer/Pixel-Sorting/HEAD/Assets/PixelSort.cs.meta -------------------------------------------------------------------------------- /Assets/PixelSorter.compute: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenizBicer/Pixel-Sorting/HEAD/Assets/PixelSorter.compute -------------------------------------------------------------------------------- /Assets/PixelSorter.compute.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenizBicer/Pixel-Sorting/HEAD/Assets/PixelSorter.compute.meta -------------------------------------------------------------------------------- /Assets/Pixels.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenizBicer/Pixel-Sorting/HEAD/Assets/Pixels.unity -------------------------------------------------------------------------------- /Assets/Pixels.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenizBicer/Pixel-Sorting/HEAD/Assets/Pixels.unity.meta -------------------------------------------------------------------------------- /Assets/island.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenizBicer/Pixel-Sorting/HEAD/Assets/island.png -------------------------------------------------------------------------------- /Assets/island.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenizBicer/Pixel-Sorting/HEAD/Assets/island.png.meta -------------------------------------------------------------------------------- /Assets/pexels-photo-1726310.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenizBicer/Pixel-Sorting/HEAD/Assets/pexels-photo-1726310.jpeg -------------------------------------------------------------------------------- /Assets/pexels-photo-1726310.jpeg.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenizBicer/Pixel-Sorting/HEAD/Assets/pexels-photo-1726310.jpeg.meta -------------------------------------------------------------------------------- /Packages/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenizBicer/Pixel-Sorting/HEAD/Packages/manifest.json -------------------------------------------------------------------------------- /ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenizBicer/Pixel-Sorting/HEAD/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenizBicer/Pixel-Sorting/HEAD/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenizBicer/Pixel-Sorting/HEAD/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenizBicer/Pixel-Sorting/HEAD/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenizBicer/Pixel-Sorting/HEAD/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenizBicer/Pixel-Sorting/HEAD/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenizBicer/Pixel-Sorting/HEAD/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenizBicer/Pixel-Sorting/HEAD/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenizBicer/Pixel-Sorting/HEAD/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenizBicer/Pixel-Sorting/HEAD/ProjectSettings/PresetManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenizBicer/Pixel-Sorting/HEAD/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenizBicer/Pixel-Sorting/HEAD/ProjectSettings/ProjectVersion.txt -------------------------------------------------------------------------------- /ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenizBicer/Pixel-Sorting/HEAD/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenizBicer/Pixel-Sorting/HEAD/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenizBicer/Pixel-Sorting/HEAD/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenizBicer/Pixel-Sorting/HEAD/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenizBicer/Pixel-Sorting/HEAD/ProjectSettings/VFXManager.asset -------------------------------------------------------------------------------- /ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenizBicer/Pixel-Sorting/HEAD/ProjectSettings/XRSettings.asset -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenizBicer/Pixel-Sorting/HEAD/README.md --------------------------------------------------------------------------------