All of these screenshots use a denoiser with only 10 samples
Flood escape 2 - Old cave system map
Low lighting test worked well.
Infiltration - Map from Flood Escape 2 rendered
Sun got blurred from the denoiser
So far I have not seen anyone make a denoiser for a Roblox path tracing rendering engine. All realtime path tracers have to use some kind of denoiser, because the amount of samples to get a clear image is in the thousands (the gpu can’t do that 60 times a second). My rendering engine can’t use the gpu, but it allows a good image to render with 10 or more samples which the cpu can do in about 30 seconds. It takes about another 30 seconds to denoise and brighten the image.
(Text above is a bit outdated. I have seen some cool stuff recently)
I might make a showcase game for this in the future. Right now I am still experimenting and fixing stuff. Also the resolution is 5th the size of 1920 - 1080, or 384 - 216.
Features:
-Sunlight
-Ambient light
-Glowing objects
-Glowing terrain
-Water - kind of
-Transparent objects - kind of
-Denoiser
-Image brighten thingy
-Transparent objects coloring Sunlight
-Fresnel Reflections
-Smooth transition between full diffuse to specular reflections using the object’s reflection property
-Fake samples – samples color pixels randomly around the sample with edge detection to prevent color bleeding. This compensates for dark scenes without doing more samples and more calculations
And I think that’s it
What I will work on:
-Keeping Sunlight sharp after denoise - Fixed
-Keep objects behind transparent objects sharp before and after denoise - FIXED
-Keeping specular reflections sharp before and after denoise - FIXED
-Have water color sunlight
-Refraction I hope - Completed
-Make it a public showcase game/ make a version for the client
I forgot to mention, I used parts in a viewport frame instead of GUI instances, because I figured out that Roblox I think limits the amount of GUI instances a client can have. That’s a problem for larger resolutions. I think I should use editable images instead but I will have to learn how those work first.