├── .gitattributes ├── .gitignore ├── BasicComputeShader ├── ComputeOutput.gd ├── FPSLabel.gd ├── RayTracer.glsl ├── RayTracer.glsl.import ├── ray_tracer_simple.gd └── ray_tracer_simple.tscn ├── LICENSE ├── README.md ├── free_look_camera.gd ├── icon.svg ├── icon.svg.import └── project.godot /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekotogd/Raytracing_Godot4/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Godot 4+ specific ignores 2 | .godot/ 3 | -------------------------------------------------------------------------------- /BasicComputeShader/ComputeOutput.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekotogd/Raytracing_Godot4/HEAD/BasicComputeShader/ComputeOutput.gd -------------------------------------------------------------------------------- /BasicComputeShader/FPSLabel.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekotogd/Raytracing_Godot4/HEAD/BasicComputeShader/FPSLabel.gd -------------------------------------------------------------------------------- /BasicComputeShader/RayTracer.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekotogd/Raytracing_Godot4/HEAD/BasicComputeShader/RayTracer.glsl -------------------------------------------------------------------------------- /BasicComputeShader/RayTracer.glsl.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekotogd/Raytracing_Godot4/HEAD/BasicComputeShader/RayTracer.glsl.import -------------------------------------------------------------------------------- /BasicComputeShader/ray_tracer_simple.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekotogd/Raytracing_Godot4/HEAD/BasicComputeShader/ray_tracer_simple.gd -------------------------------------------------------------------------------- /BasicComputeShader/ray_tracer_simple.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekotogd/Raytracing_Godot4/HEAD/BasicComputeShader/ray_tracer_simple.tscn -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekotogd/Raytracing_Godot4/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekotogd/Raytracing_Godot4/HEAD/README.md -------------------------------------------------------------------------------- /free_look_camera.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekotogd/Raytracing_Godot4/HEAD/free_look_camera.gd -------------------------------------------------------------------------------- /icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekotogd/Raytracing_Godot4/HEAD/icon.svg -------------------------------------------------------------------------------- /icon.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekotogd/Raytracing_Godot4/HEAD/icon.svg.import -------------------------------------------------------------------------------- /project.godot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nekotogd/Raytracing_Godot4/HEAD/project.godot --------------------------------------------------------------------------------