├── .gitattributes ├── .gitignore ├── Config ├── DefaultEditor.ini ├── DefaultEngine.ini └── DefaultGame.ini ├── Content ├── EdgeMask.uasset ├── Movies │ ├── Mapping_Test.uasset │ └── Mapping_Test.wmv ├── NewMediaPlayer.uasset ├── NewMediaPlayer_Video.uasset ├── Projection_MAT.uasset ├── Projection_with_shadows.umap ├── Projection_with_shadows_BuiltData.uasset ├── Projector_Final.uasset ├── RenderTargets │ └── Depth_Target.uasset └── no_input_texture.uasset ├── Projection_shadow.uproject └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherRemde/Projection_shadow/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | Intermediate 2 | Saved 3 | -------------------------------------------------------------------------------- /Config/DefaultEditor.ini: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Config/DefaultEngine.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherRemde/Projection_shadow/HEAD/Config/DefaultEngine.ini -------------------------------------------------------------------------------- /Config/DefaultGame.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherRemde/Projection_shadow/HEAD/Config/DefaultGame.ini -------------------------------------------------------------------------------- /Content/EdgeMask.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherRemde/Projection_shadow/HEAD/Content/EdgeMask.uasset -------------------------------------------------------------------------------- /Content/Movies/Mapping_Test.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherRemde/Projection_shadow/HEAD/Content/Movies/Mapping_Test.uasset -------------------------------------------------------------------------------- /Content/Movies/Mapping_Test.wmv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherRemde/Projection_shadow/HEAD/Content/Movies/Mapping_Test.wmv -------------------------------------------------------------------------------- /Content/NewMediaPlayer.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherRemde/Projection_shadow/HEAD/Content/NewMediaPlayer.uasset -------------------------------------------------------------------------------- /Content/NewMediaPlayer_Video.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherRemde/Projection_shadow/HEAD/Content/NewMediaPlayer_Video.uasset -------------------------------------------------------------------------------- /Content/Projection_MAT.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherRemde/Projection_shadow/HEAD/Content/Projection_MAT.uasset -------------------------------------------------------------------------------- /Content/Projection_with_shadows.umap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherRemde/Projection_shadow/HEAD/Content/Projection_with_shadows.umap -------------------------------------------------------------------------------- /Content/Projection_with_shadows_BuiltData.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherRemde/Projection_shadow/HEAD/Content/Projection_with_shadows_BuiltData.uasset -------------------------------------------------------------------------------- /Content/Projector_Final.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherRemde/Projection_shadow/HEAD/Content/Projector_Final.uasset -------------------------------------------------------------------------------- /Content/RenderTargets/Depth_Target.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherRemde/Projection_shadow/HEAD/Content/RenderTargets/Depth_Target.uasset -------------------------------------------------------------------------------- /Content/no_input_texture.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherRemde/Projection_shadow/HEAD/Content/no_input_texture.uasset -------------------------------------------------------------------------------- /Projection_shadow.uproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherRemde/Projection_shadow/HEAD/Projection_shadow.uproject -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherRemde/Projection_shadow/HEAD/README.md --------------------------------------------------------------------------------