├── .gitignore ├── .gitmodules ├── Demo.meta ├── Demo ├── DemoSpritePostProcessingScene.unity ├── DemoSpritePostProcessingScene.unity.meta ├── DemoSpriteScene.unity ├── DemoSpriteScene.unity.meta ├── GhostMonster.meta └── GhostMonster │ ├── GhostMonster.fbx │ ├── GhostMonster.fbx.meta │ ├── GhostMonster.prefab │ ├── GhostMonster.prefab.meta │ ├── GhostMonster@WalkFwd.fbx │ ├── GhostMonster@WalkFwd.fbx.meta │ ├── GhostMonster_C.tif │ ├── GhostMonster_C.tif.meta │ ├── GhostMonster_N.tif │ ├── GhostMonster_N.tif.meta │ ├── GhostSprite.prefab │ ├── GhostSprite.prefab.meta │ ├── Materials.meta │ └── Materials │ ├── GhostMonster_C.mat │ └── GhostMonster_C.mat.meta ├── Documentation ├── PreviewGenerator.docx ├── PreviewGenerator.pdf └── gendoc.sh ├── LICENSE ├── LICENSE.meta ├── Resources.meta ├── Resources ├── CombinerMaterial.mat ├── CombinerMaterial.mat.meta ├── PointLightSample.prefab ├── PointLightSample.prefab.meta ├── PostProcessing_Sample.asset ├── PostProcessing_Sample.asset.meta ├── PreviewCameraPostProcessing.prefab ├── PreviewCameraPostProcessing.prefab.meta ├── PreviewGeneratorDefaultCamera.prefab ├── PreviewGeneratorDefaultCamera.prefab.meta ├── PreviewGeneratorDummyController.controller ├── PreviewGeneratorDummyController.controller.meta ├── UnlitCombiner.shader ├── UnlitCombiner.shader.meta ├── button-back.png └── button-back.png.meta ├── Scripts.meta ├── Scripts ├── Editor.meta ├── Editor │ ├── PreviewGeneratorEditorWindow.cs │ └── PreviewGeneratorEditorWindow.cs.meta ├── PreviewGenerator.cs ├── PreviewGenerator.cs.meta ├── PreviewGeneratorComponent.cs ├── PreviewGeneratorComponent.cs.meta ├── SpriteRenderTexture.cs └── SpriteRenderTexture.cs.meta ├── readme.MD └── readme.MD.meta /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Super-Genius/UnityPreviewGenerator/HEAD/.gitmodules -------------------------------------------------------------------------------- /Demo.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Super-Genius/UnityPreviewGenerator/HEAD/Demo.meta -------------------------------------------------------------------------------- /Demo/DemoSpritePostProcessingScene.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Super-Genius/UnityPreviewGenerator/HEAD/Demo/DemoSpritePostProcessingScene.unity -------------------------------------------------------------------------------- /Demo/DemoSpritePostProcessingScene.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Super-Genius/UnityPreviewGenerator/HEAD/Demo/DemoSpritePostProcessingScene.unity.meta -------------------------------------------------------------------------------- /Demo/DemoSpriteScene.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Super-Genius/UnityPreviewGenerator/HEAD/Demo/DemoSpriteScene.unity -------------------------------------------------------------------------------- /Demo/DemoSpriteScene.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Super-Genius/UnityPreviewGenerator/HEAD/Demo/DemoSpriteScene.unity.meta -------------------------------------------------------------------------------- /Demo/GhostMonster.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Super-Genius/UnityPreviewGenerator/HEAD/Demo/GhostMonster.meta -------------------------------------------------------------------------------- /Demo/GhostMonster/GhostMonster.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Super-Genius/UnityPreviewGenerator/HEAD/Demo/GhostMonster/GhostMonster.fbx -------------------------------------------------------------------------------- /Demo/GhostMonster/GhostMonster.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Super-Genius/UnityPreviewGenerator/HEAD/Demo/GhostMonster/GhostMonster.fbx.meta -------------------------------------------------------------------------------- /Demo/GhostMonster/GhostMonster.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Super-Genius/UnityPreviewGenerator/HEAD/Demo/GhostMonster/GhostMonster.prefab -------------------------------------------------------------------------------- /Demo/GhostMonster/GhostMonster.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Super-Genius/UnityPreviewGenerator/HEAD/Demo/GhostMonster/GhostMonster.prefab.meta -------------------------------------------------------------------------------- /Demo/GhostMonster/GhostMonster@WalkFwd.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Super-Genius/UnityPreviewGenerator/HEAD/Demo/GhostMonster/GhostMonster@WalkFwd.fbx -------------------------------------------------------------------------------- /Demo/GhostMonster/GhostMonster@WalkFwd.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Super-Genius/UnityPreviewGenerator/HEAD/Demo/GhostMonster/GhostMonster@WalkFwd.fbx.meta -------------------------------------------------------------------------------- /Demo/GhostMonster/GhostMonster_C.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Super-Genius/UnityPreviewGenerator/HEAD/Demo/GhostMonster/GhostMonster_C.tif -------------------------------------------------------------------------------- /Demo/GhostMonster/GhostMonster_C.tif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Super-Genius/UnityPreviewGenerator/HEAD/Demo/GhostMonster/GhostMonster_C.tif.meta -------------------------------------------------------------------------------- /Demo/GhostMonster/GhostMonster_N.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Super-Genius/UnityPreviewGenerator/HEAD/Demo/GhostMonster/GhostMonster_N.tif -------------------------------------------------------------------------------- /Demo/GhostMonster/GhostMonster_N.tif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Super-Genius/UnityPreviewGenerator/HEAD/Demo/GhostMonster/GhostMonster_N.tif.meta -------------------------------------------------------------------------------- /Demo/GhostMonster/GhostSprite.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Super-Genius/UnityPreviewGenerator/HEAD/Demo/GhostMonster/GhostSprite.prefab -------------------------------------------------------------------------------- /Demo/GhostMonster/GhostSprite.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Super-Genius/UnityPreviewGenerator/HEAD/Demo/GhostMonster/GhostSprite.prefab.meta -------------------------------------------------------------------------------- /Demo/GhostMonster/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Super-Genius/UnityPreviewGenerator/HEAD/Demo/GhostMonster/Materials.meta -------------------------------------------------------------------------------- /Demo/GhostMonster/Materials/GhostMonster_C.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Super-Genius/UnityPreviewGenerator/HEAD/Demo/GhostMonster/Materials/GhostMonster_C.mat -------------------------------------------------------------------------------- /Demo/GhostMonster/Materials/GhostMonster_C.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Super-Genius/UnityPreviewGenerator/HEAD/Demo/GhostMonster/Materials/GhostMonster_C.mat.meta -------------------------------------------------------------------------------- /Documentation/PreviewGenerator.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Super-Genius/UnityPreviewGenerator/HEAD/Documentation/PreviewGenerator.docx -------------------------------------------------------------------------------- /Documentation/PreviewGenerator.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Super-Genius/UnityPreviewGenerator/HEAD/Documentation/PreviewGenerator.pdf -------------------------------------------------------------------------------- /Documentation/gendoc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Super-Genius/UnityPreviewGenerator/HEAD/Documentation/gendoc.sh -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Super-Genius/UnityPreviewGenerator/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Super-Genius/UnityPreviewGenerator/HEAD/LICENSE.meta -------------------------------------------------------------------------------- /Resources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Super-Genius/UnityPreviewGenerator/HEAD/Resources.meta -------------------------------------------------------------------------------- /Resources/CombinerMaterial.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Super-Genius/UnityPreviewGenerator/HEAD/Resources/CombinerMaterial.mat -------------------------------------------------------------------------------- /Resources/CombinerMaterial.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Super-Genius/UnityPreviewGenerator/HEAD/Resources/CombinerMaterial.mat.meta -------------------------------------------------------------------------------- /Resources/PointLightSample.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Super-Genius/UnityPreviewGenerator/HEAD/Resources/PointLightSample.prefab -------------------------------------------------------------------------------- /Resources/PointLightSample.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Super-Genius/UnityPreviewGenerator/HEAD/Resources/PointLightSample.prefab.meta -------------------------------------------------------------------------------- /Resources/PostProcessing_Sample.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Super-Genius/UnityPreviewGenerator/HEAD/Resources/PostProcessing_Sample.asset -------------------------------------------------------------------------------- /Resources/PostProcessing_Sample.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Super-Genius/UnityPreviewGenerator/HEAD/Resources/PostProcessing_Sample.asset.meta -------------------------------------------------------------------------------- /Resources/PreviewCameraPostProcessing.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Super-Genius/UnityPreviewGenerator/HEAD/Resources/PreviewCameraPostProcessing.prefab -------------------------------------------------------------------------------- /Resources/PreviewCameraPostProcessing.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Super-Genius/UnityPreviewGenerator/HEAD/Resources/PreviewCameraPostProcessing.prefab.meta -------------------------------------------------------------------------------- /Resources/PreviewGeneratorDefaultCamera.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Super-Genius/UnityPreviewGenerator/HEAD/Resources/PreviewGeneratorDefaultCamera.prefab -------------------------------------------------------------------------------- /Resources/PreviewGeneratorDefaultCamera.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Super-Genius/UnityPreviewGenerator/HEAD/Resources/PreviewGeneratorDefaultCamera.prefab.meta -------------------------------------------------------------------------------- /Resources/PreviewGeneratorDummyController.controller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Super-Genius/UnityPreviewGenerator/HEAD/Resources/PreviewGeneratorDummyController.controller -------------------------------------------------------------------------------- /Resources/PreviewGeneratorDummyController.controller.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Super-Genius/UnityPreviewGenerator/HEAD/Resources/PreviewGeneratorDummyController.controller.meta -------------------------------------------------------------------------------- /Resources/UnlitCombiner.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Super-Genius/UnityPreviewGenerator/HEAD/Resources/UnlitCombiner.shader -------------------------------------------------------------------------------- /Resources/UnlitCombiner.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Super-Genius/UnityPreviewGenerator/HEAD/Resources/UnlitCombiner.shader.meta -------------------------------------------------------------------------------- /Resources/button-back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Super-Genius/UnityPreviewGenerator/HEAD/Resources/button-back.png -------------------------------------------------------------------------------- /Resources/button-back.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Super-Genius/UnityPreviewGenerator/HEAD/Resources/button-back.png.meta -------------------------------------------------------------------------------- /Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Super-Genius/UnityPreviewGenerator/HEAD/Scripts.meta -------------------------------------------------------------------------------- /Scripts/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Super-Genius/UnityPreviewGenerator/HEAD/Scripts/Editor.meta -------------------------------------------------------------------------------- /Scripts/Editor/PreviewGeneratorEditorWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Super-Genius/UnityPreviewGenerator/HEAD/Scripts/Editor/PreviewGeneratorEditorWindow.cs -------------------------------------------------------------------------------- /Scripts/Editor/PreviewGeneratorEditorWindow.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Super-Genius/UnityPreviewGenerator/HEAD/Scripts/Editor/PreviewGeneratorEditorWindow.cs.meta -------------------------------------------------------------------------------- /Scripts/PreviewGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Super-Genius/UnityPreviewGenerator/HEAD/Scripts/PreviewGenerator.cs -------------------------------------------------------------------------------- /Scripts/PreviewGenerator.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Super-Genius/UnityPreviewGenerator/HEAD/Scripts/PreviewGenerator.cs.meta -------------------------------------------------------------------------------- /Scripts/PreviewGeneratorComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Super-Genius/UnityPreviewGenerator/HEAD/Scripts/PreviewGeneratorComponent.cs -------------------------------------------------------------------------------- /Scripts/PreviewGeneratorComponent.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Super-Genius/UnityPreviewGenerator/HEAD/Scripts/PreviewGeneratorComponent.cs.meta -------------------------------------------------------------------------------- /Scripts/SpriteRenderTexture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Super-Genius/UnityPreviewGenerator/HEAD/Scripts/SpriteRenderTexture.cs -------------------------------------------------------------------------------- /Scripts/SpriteRenderTexture.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Super-Genius/UnityPreviewGenerator/HEAD/Scripts/SpriteRenderTexture.cs.meta -------------------------------------------------------------------------------- /readme.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Super-Genius/UnityPreviewGenerator/HEAD/readme.MD -------------------------------------------------------------------------------- /readme.MD.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Super-Genius/UnityPreviewGenerator/HEAD/readme.MD.meta --------------------------------------------------------------------------------