Tobias Noller - VFX Sketchbook

Hey guys,
as my goal for this year was to post a bit more, I’m starting this sketchbook with the work I’ve done for Bleeding Edge. I can elaborate on some of the things a bit more, if people are interested. It’s all UE4 Cascade.
Some of the things we’ve done, which I think are quite cool:

  • Selecting shader-based team coloring (so it’s easier to distinguish between enemy and ally vfx)
  • Beam bending (by feeding the character velocities into the beam source/target tangents)
  • HQ effects for Cinematics from game assets (it’s actually quite nice to go from game quality to cinematics, as upressing an effect is relatively easy and it saves a lot of time)



https://www.youtube.com/watch?v=o8kdpx0uYMY

42 Likes

Excellent reel! Your colors and timing are on point! :100:

1 Like

Nice work! There’s a great variation of punchy and vibrant effects showcased in your reel :+1:

1 Like

This reel is awesome! The variety of showcased effects is really cool, and the colors are so nice! :smiley:

1 Like

Really cool! For the beams (setting the spline start/end-points and controlling the tangents) did you use (animation)blueprints?

Did you have a concept artist for the VFX so that color palette etc was already given?

1 Like

Thanks guys! :slight_smile:

So, the tangents are calculated in code (using the velocity of the characters, the direction of the beam, and lerping between last frame(s) and current frame). Then pushed directly into the particle system as parameters. Could be done in blueprints as well, we just coded it for performance reasons.

I can then controll the ‘stiffness’ (by adjusting over how many frames tangents are lerped), and also how much the beam bends, right inside the particle system by adjusting the output values.
In addition we measure the beam length, so that it bends less when going further away.

Unfortunately I can’t share exactly how it works, but it looks similar to this inside the particle system:

We didn’t really concept vfx (would have been nice though :stuck_out_tongue: ), I just created color schemes that would fit to each characters primary/secondary colors. We used LUTs/GradientMaps for most of the fx, also originally thinking we could create vfx skins relatively fast, by chaning the LUTs. This idea was scrapped later though, as it just really doesn’t work so well. It works for some effects and breaks for others. It’s also really hard to create all effects for a character re-using exactly the same LUTs etc. Saved me a lot of time though, as I was the only vfx artist on the project for most of the development.

Here are some of the LUTs we use:

6 Likes

Great work, love the electrical effects, overall timing, shapes, color and execution of those effect are well done. Keep it up .

Thanks for the answer! I’m doing such speed/direction-calculation very often as well. As I’m not getting the info from C++ but having to use my scripts, I often lose the first frame as the position from last frame has no infos yet. Bet after this it works well.
I’m still surprised that you can easily set the start- and the end-point of a trail via cascade. When I was doing this for Rime we had to use Anim-Blueprints but maybe I oversaw the easier solution.

I love your color choices. I wonder: Is the lightning “just” a gray-scale texture and the LUT colorizes just this, or do you also change the colors along the lightning so that it’s e.g. brighter/whiter at the beginning and more saturated at the end?

This is super amazing stuff, very inspiring to me as a beginner!

1 Like