Namespace Gamelogic.Fx.URP.PostProcessing.Effects
Classes
- GLAddTextureRendererFeature
A post process that overlays a texture on top of the scene, respecting transparency. See ../common/docs/effects-reference-common.html#add-texture.
- GLAdjustGammaRendererFeature
A post process that adjusts the gamma of the image. See ../common/docs/effects-reference-common.html#adjust-gamma.
- GLAdjustSaturationRendererFeature
A post process that adjusts the saturation of the image. See ../common/docs/effects-reference-common.html#adjust-saturation.
- GLBilateralFilterRendererFeature
A post process that smooths the image using an edge-preserving, noise-reducing filter. See ../common/docs/effects-reference-common.html#bilateral-filter.
- GLBlendTextureRendererFeature
A post process that blends a texture over the scene at a configurable opacity. See ../common/docs/effects-reference-common.html#blend-texture.
- GLBoxBlurRendererFeature
A post process that applies a uniform blur by averaging neighbour pixels colors. See ../common/docs/effects-reference-common.html#box-blur.
- GLConvexHullMapRendererFeature
A post process that gradually shifts colors toward the provided primaries, producing posterized, clustered, or palette–constrained looks. See ../common/docs/effects-reference-common.html#convex-hull-map.
- GLDesaturateRendererFeature
A post process that converts the image to grayscale using luminosity. See ../common/docs/effects-reference-common.html#desaturate.
- GLGaussianBlurRendererFeature
A post process that applies a smooth, natural-looking blur using a Gaussian weight curve. See ../common/docs/effects-reference-common.html#gaussian-blur.
- GLInvertRendererFeature
Inverts the colors of the image.
- GLMaxRendererFeature
A post process that replaces each pixel with the maximum color value found in its neighborhood. See ../common/docs/effects-reference-common.html#max-filter.
- GLMinRendererFeature
A post process that replaces each pixel with the minimum color value found in its neighborhood. See ../common/docs/effects-reference-common.html#min-filter.
- GLMixboxConvexHullMapRendererFeature
A post process that pushes each pixel’s color toward chosen primaries using convex-hull projection, but blends them with Mixbox for more natural, smoother color transitions than normal interpolation. See ../common/docs/effects-reference-common.html#mixbox-convex-hull-map.
- GLPixelateRendererFeature
A post process that applies a pixelation effect to the image by sampling blocks of pixels instead of individual texels. See ../common/docs/effects-reference-common.html#pixelate.
- GLPowerMeanRendererFeature
A post process that blurs the image by computing a power mean (p-norm mean) of neighboring pixels. See ../common/docs/effects-reference-common.html#power-mean.
- GLQuadToneMapRendererFeature
A smooth 4-way threshold shader using inverse lerp (linear blend). Interpolates between Low–Mid0, Mid0–Mid1, and Mid1–High based on lightness. Values below LowValue use LowColor, above HighValue use HighColor.
- GLQuantizeRendererFeature
A post process that reduces the number of distinct color values in the image, creating a posterized or stylized effect. See ../common/docs/effects-reference-common.html#quantize.
- GLSimpleOutlineRendererFeature
A post process that produces an outline. See ../common/docs/effects-reference-common.html#simple-outline.
- GLTriToneMapRendererFeature
Maps the image’s tones to three colors (low, mid, and high) based on lightness, smoothly blending between them using inverse linear interpolation. See ../common/docs/effects-reference-common.html#tri-tone-map.