├── Content ├── StarterContent │ ├── Blueprints │ │ ├── Assets │ │ │ ├── FogBrightnessLUT.uasset │ │ │ ├── M_LightStage_Arrows.uasset │ │ │ ├── M_LightStage_Skybox_Black.uasset │ │ │ ├── M_LightStage_Skybox_HDRI.uasset │ │ │ ├── M_LightStage_Skybox_Master.uasset │ │ │ ├── SM_Arrows.uasset │ │ │ ├── Skybox.uasset │ │ │ └── SunlightColorLUT.uasset │ │ └── Raymarching │ │ │ ├── DrawShit.uasset │ │ │ ├── DrawTextureOnScreen.uasset │ │ │ ├── RaymarchVolumeDraw.uasset │ │ │ └── Raymarch_RT.uasset │ ├── Maps │ │ ├── Minimal_Default.umap │ │ └── Minimal_Default_BuiltData.uasset │ ├── Materials │ │ └── M_Basic_Wall.uasset │ └── Shapes │ │ ├── Shape_Cone.uasset │ │ ├── Shape_Cube.uasset │ │ ├── Shape_Cylinder.uasset │ │ ├── Shape_NarrowCapsule.uasset │ │ ├── Shape_Pipe.uasset │ │ ├── Shape_Pipe_180.uasset │ │ ├── Shape_Pipe_90.uasset │ │ ├── Shape_Plane.uasset │ │ ├── Shape_QuadPyramid.uasset │ │ ├── Shape_Sphere.uasset │ │ ├── Shape_Torus.uasset │ │ ├── Shape_TriPyramid.uasset │ │ ├── Shape_Trim.uasset │ │ ├── Shape_Trim_90_In.uasset │ │ ├── Shape_Trim_90_Out.uasset │ │ ├── Shape_Tube.uasset │ │ ├── Shape_Wedge_A.uasset │ │ ├── Shape_Wedge_B.uasset │ │ └── Shape_WideCapsule.uasset └── Volumes │ └── aneurism.raw ├── Plugins └── Raymarcher │ ├── Raymarcher.uplugin │ ├── Resources │ └── Icon128.png │ ├── Shaders │ └── Private │ │ └── RaymarchShader.usf │ └── Source │ └── Raymarcher │ ├── Private │ ├── RaymarchBlueprintLibrary.cpp │ ├── RaymarchRendering.cpp │ └── Raymarcher.cpp │ ├── Public │ ├── RaymarchBlueprintLibrary.h │ ├── RaymarchRendering.h │ └── Raymarcher.h │ └── Raymarcher.Build.cs └── README.md /Content/StarterContent/Blueprints/Assets/FogBrightnessLUT.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommybazar/UE4GlobalShaderRaymarcher/HEAD/Content/StarterContent/Blueprints/Assets/FogBrightnessLUT.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Blueprints/Assets/M_LightStage_Arrows.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommybazar/UE4GlobalShaderRaymarcher/HEAD/Content/StarterContent/Blueprints/Assets/M_LightStage_Arrows.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Blueprints/Assets/M_LightStage_Skybox_Black.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommybazar/UE4GlobalShaderRaymarcher/HEAD/Content/StarterContent/Blueprints/Assets/M_LightStage_Skybox_Black.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Blueprints/Assets/M_LightStage_Skybox_HDRI.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommybazar/UE4GlobalShaderRaymarcher/HEAD/Content/StarterContent/Blueprints/Assets/M_LightStage_Skybox_HDRI.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Blueprints/Assets/M_LightStage_Skybox_Master.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommybazar/UE4GlobalShaderRaymarcher/HEAD/Content/StarterContent/Blueprints/Assets/M_LightStage_Skybox_Master.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Blueprints/Assets/SM_Arrows.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommybazar/UE4GlobalShaderRaymarcher/HEAD/Content/StarterContent/Blueprints/Assets/SM_Arrows.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Blueprints/Assets/Skybox.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommybazar/UE4GlobalShaderRaymarcher/HEAD/Content/StarterContent/Blueprints/Assets/Skybox.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Blueprints/Assets/SunlightColorLUT.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommybazar/UE4GlobalShaderRaymarcher/HEAD/Content/StarterContent/Blueprints/Assets/SunlightColorLUT.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Blueprints/Raymarching/DrawShit.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommybazar/UE4GlobalShaderRaymarcher/HEAD/Content/StarterContent/Blueprints/Raymarching/DrawShit.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Blueprints/Raymarching/DrawTextureOnScreen.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommybazar/UE4GlobalShaderRaymarcher/HEAD/Content/StarterContent/Blueprints/Raymarching/DrawTextureOnScreen.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Blueprints/Raymarching/RaymarchVolumeDraw.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommybazar/UE4GlobalShaderRaymarcher/HEAD/Content/StarterContent/Blueprints/Raymarching/RaymarchVolumeDraw.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Blueprints/Raymarching/Raymarch_RT.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommybazar/UE4GlobalShaderRaymarcher/HEAD/Content/StarterContent/Blueprints/Raymarching/Raymarch_RT.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Maps/Minimal_Default.umap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommybazar/UE4GlobalShaderRaymarcher/HEAD/Content/StarterContent/Maps/Minimal_Default.umap -------------------------------------------------------------------------------- /Content/StarterContent/Maps/Minimal_Default_BuiltData.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommybazar/UE4GlobalShaderRaymarcher/HEAD/Content/StarterContent/Maps/Minimal_Default_BuiltData.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Materials/M_Basic_Wall.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommybazar/UE4GlobalShaderRaymarcher/HEAD/Content/StarterContent/Materials/M_Basic_Wall.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Shapes/Shape_Cone.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommybazar/UE4GlobalShaderRaymarcher/HEAD/Content/StarterContent/Shapes/Shape_Cone.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Shapes/Shape_Cube.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommybazar/UE4GlobalShaderRaymarcher/HEAD/Content/StarterContent/Shapes/Shape_Cube.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Shapes/Shape_Cylinder.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommybazar/UE4GlobalShaderRaymarcher/HEAD/Content/StarterContent/Shapes/Shape_Cylinder.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Shapes/Shape_NarrowCapsule.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommybazar/UE4GlobalShaderRaymarcher/HEAD/Content/StarterContent/Shapes/Shape_NarrowCapsule.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Shapes/Shape_Pipe.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommybazar/UE4GlobalShaderRaymarcher/HEAD/Content/StarterContent/Shapes/Shape_Pipe.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Shapes/Shape_Pipe_180.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommybazar/UE4GlobalShaderRaymarcher/HEAD/Content/StarterContent/Shapes/Shape_Pipe_180.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Shapes/Shape_Pipe_90.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommybazar/UE4GlobalShaderRaymarcher/HEAD/Content/StarterContent/Shapes/Shape_Pipe_90.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Shapes/Shape_Plane.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommybazar/UE4GlobalShaderRaymarcher/HEAD/Content/StarterContent/Shapes/Shape_Plane.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Shapes/Shape_QuadPyramid.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommybazar/UE4GlobalShaderRaymarcher/HEAD/Content/StarterContent/Shapes/Shape_QuadPyramid.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Shapes/Shape_Sphere.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommybazar/UE4GlobalShaderRaymarcher/HEAD/Content/StarterContent/Shapes/Shape_Sphere.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Shapes/Shape_Torus.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommybazar/UE4GlobalShaderRaymarcher/HEAD/Content/StarterContent/Shapes/Shape_Torus.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Shapes/Shape_TriPyramid.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommybazar/UE4GlobalShaderRaymarcher/HEAD/Content/StarterContent/Shapes/Shape_TriPyramid.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Shapes/Shape_Trim.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommybazar/UE4GlobalShaderRaymarcher/HEAD/Content/StarterContent/Shapes/Shape_Trim.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Shapes/Shape_Trim_90_In.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommybazar/UE4GlobalShaderRaymarcher/HEAD/Content/StarterContent/Shapes/Shape_Trim_90_In.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Shapes/Shape_Trim_90_Out.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommybazar/UE4GlobalShaderRaymarcher/HEAD/Content/StarterContent/Shapes/Shape_Trim_90_Out.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Shapes/Shape_Tube.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommybazar/UE4GlobalShaderRaymarcher/HEAD/Content/StarterContent/Shapes/Shape_Tube.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Shapes/Shape_Wedge_A.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommybazar/UE4GlobalShaderRaymarcher/HEAD/Content/StarterContent/Shapes/Shape_Wedge_A.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Shapes/Shape_Wedge_B.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommybazar/UE4GlobalShaderRaymarcher/HEAD/Content/StarterContent/Shapes/Shape_Wedge_B.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Shapes/Shape_WideCapsule.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommybazar/UE4GlobalShaderRaymarcher/HEAD/Content/StarterContent/Shapes/Shape_WideCapsule.uasset -------------------------------------------------------------------------------- /Content/Volumes/aneurism.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommybazar/UE4GlobalShaderRaymarcher/HEAD/Content/Volumes/aneurism.raw -------------------------------------------------------------------------------- /Plugins/Raymarcher/Raymarcher.uplugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommybazar/UE4GlobalShaderRaymarcher/HEAD/Plugins/Raymarcher/Raymarcher.uplugin -------------------------------------------------------------------------------- /Plugins/Raymarcher/Resources/Icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommybazar/UE4GlobalShaderRaymarcher/HEAD/Plugins/Raymarcher/Resources/Icon128.png -------------------------------------------------------------------------------- /Plugins/Raymarcher/Shaders/Private/RaymarchShader.usf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommybazar/UE4GlobalShaderRaymarcher/HEAD/Plugins/Raymarcher/Shaders/Private/RaymarchShader.usf -------------------------------------------------------------------------------- /Plugins/Raymarcher/Source/Raymarcher/Private/RaymarchBlueprintLibrary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommybazar/UE4GlobalShaderRaymarcher/HEAD/Plugins/Raymarcher/Source/Raymarcher/Private/RaymarchBlueprintLibrary.cpp -------------------------------------------------------------------------------- /Plugins/Raymarcher/Source/Raymarcher/Private/RaymarchRendering.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommybazar/UE4GlobalShaderRaymarcher/HEAD/Plugins/Raymarcher/Source/Raymarcher/Private/RaymarchRendering.cpp -------------------------------------------------------------------------------- /Plugins/Raymarcher/Source/Raymarcher/Private/Raymarcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommybazar/UE4GlobalShaderRaymarcher/HEAD/Plugins/Raymarcher/Source/Raymarcher/Private/Raymarcher.cpp -------------------------------------------------------------------------------- /Plugins/Raymarcher/Source/Raymarcher/Public/RaymarchBlueprintLibrary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommybazar/UE4GlobalShaderRaymarcher/HEAD/Plugins/Raymarcher/Source/Raymarcher/Public/RaymarchBlueprintLibrary.h -------------------------------------------------------------------------------- /Plugins/Raymarcher/Source/Raymarcher/Public/RaymarchRendering.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommybazar/UE4GlobalShaderRaymarcher/HEAD/Plugins/Raymarcher/Source/Raymarcher/Public/RaymarchRendering.h -------------------------------------------------------------------------------- /Plugins/Raymarcher/Source/Raymarcher/Public/Raymarcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommybazar/UE4GlobalShaderRaymarcher/HEAD/Plugins/Raymarcher/Source/Raymarcher/Public/Raymarcher.h -------------------------------------------------------------------------------- /Plugins/Raymarcher/Source/Raymarcher/Raymarcher.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommybazar/UE4GlobalShaderRaymarcher/HEAD/Plugins/Raymarcher/Source/Raymarcher/Raymarcher.Build.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommybazar/UE4GlobalShaderRaymarcher/HEAD/README.md --------------------------------------------------------------------------------