Introduction

Jiffycrew Post Processs Line. This is not just an outliner.

We don't want this new asset pack is called "Outliner". While outliners only detect outlines of objects, Jiffycrew Post Process Line detects both outlines and rich interior feature lines of objects. To do so, it incorporates an advanced computer graphics feature line extraction technique introduced in the "Suggestive Contours for Conveying Shape" SIGGRAPH paper. The Suggestive Contour is a complex differential geometry mathematical definition to find view-dependent surface inflection points. Theoretically they are contours in nearby viewpoints, almost contours, and at the same time also the zeros of radial curvatures. In practice, this line is effective to find lines along view-dependent valleys of surface wrinkles. We believe our Jiffycrew Post Process Line firstly introduces this technique to game industry as an Unreal Engine 4 implementation.

By incorporating this new line definition, Jiffycrew Post Process Line enables generating revolutionary line rendering images that provide an illusion of hand-drawing sketches by skilled artists. Please see below to compare ordinary outlining techniques that mostly uses silhouettes and creases (depth and normal discontinuities, respectively) and ours.

Click to see full resolution. Find more screenshots in our screenshot chapter.

Line-Augmented PBR: Rich Lines on top of PBR

Making an unique outlook is one very important aspect for successful game development. Imagine combining this rich line rendering technique with UE4's PBR. We show such rendering examples below. Find how the rich lines provide unique artistic feeling on top of realistic shading.

Click to see full resolution. Find more screenshots in our screenshot chapter.

Redesigned User Experience of Line Application Process

Jiffycrew Post Process Line is a post process full screen effect. As a post process effect, we first designed it in a similar way to what others do. We tried to let users add a Post Process Volume, and then find blendables, and then assign post process material. We tried to let users move blending weight sliders to on and off the effect. We tried to let users make so many post process material instances to assign different scenes, and let users find and open each corresponding instance when they want to change the line style of specific scenes.

And it was really mother father cumbersome.

After we found it cumbersome, we threw away all the previous implementations and decided to make a new "one-click" method to apply lines and made it. With Jiffycrew Post Process Line, applying lines to your scene is simply done by dragging a blueprint actor class JiffycrewLineManager to your scene. All done.

We also decided to make a single control panel for line control. Once added, the JiffycrewLineManager actor is what you only need to care. All the on/off switches, value sliders, color pickers, etc. are located there.

One subtle thing to mention. The render custom depth switch. People who have experiences of line extraction in UE4 all knows about it. After releasing our famous "Cartoon Rendering Pack" that has basic outlining function, so many people asked questions to us: why outlines are not shown? Yes. to draw lines, you need to click actors and turn their "render custom depth" switches on. We also tried to provide a better way to manage those actors that want to get lines. We tried tags, lists, and so on. And we gave up. Because all those approaches eventually need to touch the "render custom depth" switch which can also be used for other purposes. Touching them without letting users to know it, could open a hell gate.

The thing we did was, by default, the line rendering uses "scene depth" rather than "custom depth." So, when the manager actor was added, it just draws all the lines on top of all visible objects. Users who want to manage specific actors, then can turn on "Use Custom Depth" and do what they need to do.

Appearance Preservation along Depth Change

Implementing a complex mathematical definition itself is not a trivial task. Jiffycrew Post Process Line accurately implements several complex math formula for rich line drawing in the screen space using filtering. However, filtering is not everything for flawless high-quality line rendering in practice.

After experiencing many public and commercial implementation of outliners, we found that the appearance of objects is dominated by lines when the object is zoomed out, showing distorted appearance. You can see a similar artifact below.

Jiffycrew Post Process Line solves this problem through adaptive control of multiple parameters along depth. See below to find differences from previous images. Users can turn on and off the "Depth Adaptation" switch to apply this effect.

This depth adaptation feature was firstly introduced in our "Cartoon Rendering Pack" for silhouettes and creases. We refined this beloved feature and also extended it to support suggest contours and highlights.

More features/topics to discuss

We have many more features/topics to discuss. Honestly, implementing a flawless post process line material requires so many subtle things to handle. Below are several that we don't discuss or show samples here.

  • We support line coloring (different colors can be applied to different line types).

  • We support to line blending with shading: line multiplication / linear blending.

  • We support hidden line removal.

  • We still support making post process material instances of our material

  • We provide debug material instance for line analysis.

  • We have always improved our products based on users' feedback.

  • And so on.

Last updated