Extended Shading Pro

Documentation for Unreal Engine plugin

Overview

Extended Shading Pro is a powerful and lightweight Unreal Engine plugin that gives developers fine-grained control over shading layer manipulation in forward shading render paths. Designed with performance and flexibility in mind, this plugin enables artists and engineers to create custom shading effects without relying on costly post-processing pipelines or modifying engine source code.

Table of Contents

    Quick Start Guide

    Installation

    1. In your project settings:
      1. Enable Forward Shading.
      2. Enable Allow Static Lighting.
    2. Download the Extended Shading Pro plugin from the FAB Marketplace.
    3. Extract the downloaded content to your project’s Plugins folder.
    4. Launch your project and enable the plugin via Edit → Plugins → Extended Shading Pro.
    5. Restart Editor to apply changes.

    Note: Expect large shader compilation process after following steps above.

    Creating Your First Extended Shading Material

    Single Layer

    To create basic setup with single node do the following:

    1. Create a new Material in your project and open it.
    2. Create Constant3Vector node and set some color to it.
    3. Right-click in the Material Editor and search for Extended Shading node, then select it to add.
    4. Connect Constant3Vector Output Pin to Extended Shading node's Exec Pin.
    5. Connect Extended Shading node's Output Pin to your Material’s Base Color Pin.
    6. Hit Apply button in Material Editor menu.

    You should get the following node sequence as depicted in the image below.

    Completing these steps will result in material that only processes Diffuse Layer, excluding influence from Directional Light, Reflection, Skylight, etc. Try setting the Material to some mesh on the level and see the result!

    Note: Build lighting on your level after setting the material.

    Note: Apply changes in Material Editor after every modification.

    Multiple Layers

    You can chain Extended Shading nodes to include different layers. To process only Directional Light and Skylight do the following in the previous Material:

    1. Create two Extended Shading nodes.
    2. Inside Details menu of each node: expand Layer Type dropdown menu and select Directional Light value for first node and Skylight value for second one.
    3. Connect Nodes as in the image below and hit Apply button.

    Recreating Default Pipeline

    It is possible to recreate Default Forward Shading approach implemented in Unreal Engine by using Extended Shading node. Just follow the steps:

    1. Create seven Extended Shading nodes.
    2. Configure their Layer Type values and connect them in following order:
      • Directional Light
      • Skylight
      • Reflection
      • Specular
      • Self Shadow
      • Dynamic Light
      • Dynamic Light Specular
    3. Connect Nodes as in the image below and hit Apply button.

    Moving Forward

    Before you will be ready to create your own shading it is worth to study example materials that we have created for you! You can find them under the plugin directory. Example materials include great variety of styles: Halftone, Toon, BlackAndWhite, Negate and many more! Also be sure to check out Node Reference section below to get more info on parameters.

    Node Reference

    To fully utilize all Extended Shading node’s possibilities, it is important to understand its parameters.

    Target Index

    Target of the processed layer. It can take the following values:

    Layer Type

    Type of processed layer. It can take the following values:

    Blend Inputs

    Expandable list of input pins to be used in final blend code.

    Input Name

    Text for displaying input pin name.

    Tooltip

    Text for displaying input pin description, when hovering over with the mouse.

    Blend Code

    HLSL code for modifying scene object. This is the place to override default formula.

    Note: Only active if Layer Modify is false.

    Original Blend Code looks like this:

    Target += Layer * LayerModifier * Source;

    Breaking this down we get the following:

    When you are adding new Blend Inputs, they become available for using in this code!

    Layer Modify

    Boolean flag for Modify Code parameter activation.

    Modify Code

    HLSL code for modifying layer. This is the place to override default formula. This field works with other parameters the same way as Blend Code.

    Note: Only active if Layer Modify is true or Layer Type has values: Shadow, Self Shadow.

    Gallery

    Take a look at what can be achieved with Extended Shading Pro!