gitextract_7clwo7l9/ ├── .gitignore ├── Assets/ │ ├── Plugins/ │ │ ├── Editor/ │ │ │ ├── JetBrains/ │ │ │ │ └── JetBrains.Rider.Unity.Editor.Plugin.Repacked.dll.meta │ │ │ └── JetBrains.meta │ │ └── Editor.meta │ ├── Plugins.meta │ ├── ScreenShooter/ │ │ ├── Demo/ │ │ │ ├── DemoScene.unity │ │ │ ├── DemoScene.unity.meta │ │ │ ├── Materials/ │ │ │ │ ├── CubeMaterial.mat │ │ │ │ ├── CubeMaterial.mat.meta │ │ │ │ ├── LogoMaterial.mat │ │ │ │ ├── LogoMaterial.mat.meta │ │ │ │ ├── Materials/ │ │ │ │ │ ├── borodar_logo_512.mat │ │ │ │ │ └── borodar_logo_512.mat.meta │ │ │ │ ├── Materials.meta │ │ │ │ ├── PlaneMaterial.mat │ │ │ │ ├── PlaneMaterial.mat.meta │ │ │ │ ├── Textures/ │ │ │ │ │ ├── blue_128.png.meta │ │ │ │ │ ├── borodar_logo_512.png.meta │ │ │ │ │ └── white_128.png.meta │ │ │ │ └── Textures.meta │ │ │ ├── Materials.meta │ │ │ ├── Scripts/ │ │ │ │ ├── Rotator.cs │ │ │ │ └── Rotator.cs.meta │ │ │ ├── Scripts.meta │ │ │ ├── Sprites/ │ │ │ │ └── borodar_logo_128.png.meta │ │ │ └── Sprites.meta │ │ ├── Demo.meta │ │ ├── Editor/ │ │ │ ├── Data/ │ │ │ │ ├── ScreenShooterSettings.asset │ │ │ │ └── ScreenShooterSettings.asset.meta │ │ │ ├── Data.meta │ │ │ ├── Scripts/ │ │ │ │ ├── Configs/ │ │ │ │ │ ├── PredefinedConfigs.cs │ │ │ │ │ ├── PredefinedConfigs.cs.meta │ │ │ │ │ ├── ReorderableConfigsList.cs │ │ │ │ │ ├── ReorderableConfigsList.cs.meta │ │ │ │ │ ├── ScreenshotConfig.cs │ │ │ │ │ └── ScreenshotConfig.cs.meta │ │ │ │ ├── Configs.meta │ │ │ │ ├── Info/ │ │ │ │ │ ├── AssetInfo.cs │ │ │ │ │ └── AssetInfo.cs.meta │ │ │ │ ├── Info.meta │ │ │ │ ├── Prefs/ │ │ │ │ │ ├── ScreenShooterPrefs.cs │ │ │ │ │ └── ScreenShooterPrefs.cs.meta │ │ │ │ ├── Prefs.meta │ │ │ │ ├── ScreenShooterSettings.cs │ │ │ │ ├── ScreenShooterSettings.cs.meta │ │ │ │ ├── ScreenShooterWindow.cs │ │ │ │ ├── ScreenShooterWindow.cs.meta │ │ │ │ ├── Util/ │ │ │ │ │ ├── EditorCoroutine.cs │ │ │ │ │ ├── EditorCoroutine.cs.meta │ │ │ │ │ ├── EditorUtil.cs │ │ │ │ │ ├── EditorUtil.cs.meta │ │ │ │ │ ├── GameViewUtil.cs │ │ │ │ │ ├── GameViewUtil.cs.meta │ │ │ │ │ ├── ScreenshotUtil.cs │ │ │ │ │ └── ScreenshotUtil.cs.meta │ │ │ │ └── Util.meta │ │ │ ├── Scripts.meta │ │ │ ├── Textures/ │ │ │ │ ├── Personal/ │ │ │ │ │ ├── CameraIcon.png.meta │ │ │ │ │ ├── ConfigsIcon.png.meta │ │ │ │ │ ├── FolderIcon.png.meta │ │ │ │ │ ├── TakeButtonActive.png.meta │ │ │ │ │ ├── TakeButtonNormal.png.meta │ │ │ │ │ └── TakeScreenshotsIcon.png.meta │ │ │ │ ├── Personal.meta │ │ │ │ ├── Professional/ │ │ │ │ │ ├── CameraIcon.png.meta │ │ │ │ │ ├── ConfigsIcon.png.meta │ │ │ │ │ ├── FolderIcon.png.meta │ │ │ │ │ ├── TakeButtonActive.png.meta │ │ │ │ │ ├── TakeButtonNormal.png.meta │ │ │ │ │ └── TakeScreenshotsIcon.png.meta │ │ │ │ └── Professional.meta │ │ │ └── Textures.meta │ │ ├── Editor.meta │ │ └── QuickStart.pdf.meta │ └── ScreenShooter.meta ├── LICENSE ├── ProjectSettings/ │ ├── AudioManager.asset │ ├── ClusterInputManager.asset │ ├── DynamicsManager.asset │ ├── EditorBuildSettings.asset │ ├── EditorSettings.asset │ ├── GraphicsSettings.asset │ ├── InputManager.asset │ ├── NavMeshAreas.asset │ ├── NetworkManager.asset │ ├── Physics2DSettings.asset │ ├── PresetManager.asset │ ├── ProjectSettings.asset │ ├── ProjectVersion.txt │ ├── QualitySettings.asset │ ├── TagManager.asset │ ├── TimeManager.asset │ ├── UnityConnectSettings.asset │ └── VFXManager.asset └── README.md