Pataya: Sketch #22

Here are my seven effects, final one at the end !

Standard

Pixel Art
https://youtu.be/YTV3TZ2uipA

Light Saber

https://youtu.be/1yCqZ1ntkKc

Rainbow

Glitch

Ink

And the final effect : the Fire Woosh !

Had fun creating these variations, hope you enjoy them ! Good luck to all participants!


Hey there.
Been lurking on these Sketch threads for a while now, finally decided myself to participate in one of them.
Going for some sword wooshes here, nothing quite precise in mind, I just want to experiment stuff.

I actually never had the opportunity to create sword trails on Unity before, and I realized that the Trail Renderer component creates quite rough angles on fast motions. I created a small C# tool to get smoother results.

Woosh #01 : Default Woosh

So here’s my first version I guess, probably the most straight-forward woosh effect, nothing special with it, this will just serve as a base for the rest.

Woosh #02 : Pixel Art

https://youtu.be/YTV3TZ2uipA

For this one I wanted to get familiar with the new custom Post-Process Stack shaders worfklow, so I went for a Pixel-art version.

So I wrote two Image effects shaders : The first one is a pixellise shader, that rounds the texcoords with a floor() function, and the second one is a simple posterize shader, to get less color variations, which better sells the deal for this kind of old-school style. Finally, I combined these with Unity’s grain and bloom.

Pixellise

Posterize

Linking the shader to the Post-Processing Stack v2 is quite easy, the documentation of Unity on GitHub is well detailed : Writing Custom Effects · Unity-Technologies/PostProcessing Wiki · GitHub

A simple enum also allows to switch the order between the custom image effect and Unity’s stack effects, so I could chose between affecting the Bloom/Grain/Vignette with the Posterize/Pixellise or not.
image

After Stack

Before Stack

Pretty satisfied with this result, I really want to keep this one simple and minimalist so I’ll probably leave it as is.

Woosh #03 : Light Saber

https://youtu.be/13MawrPzs_A

Ok so I saw the Star Wars trailer, aaand… yeah. Couldn’t really hold myself there.
So my next effect will be a Light Saber woosh, mainly inspired by Kylo Ren’s.

And there it is (probably should have marked the dates or something but hey whatever I guess haha)

https://youtu.be/1yCqZ1ntkKc

Ok so I took quite a bit a freedom here, the lightsabers in the movies don’t have a particularly strong woosh effect so I kept going with the lightning-theme thingy with this one.

There are three layers in the woosh effect :

  • A mask for the shape, the texture being a looping flipbook to add some motion.

  • An erosion texture made using the difference cloud noise of photoshop over a cloud noise.

  • A few particles over the trail, with a simple lightning flipbook

Okay, hope you like it, four more to go! (and one week left only sweating).

10 Likes