The attack animation I got on Mixamo was so wonky, so I ended up not giving Michelle a sword. It would have been too obvious that the tip of the sword doesn’t align with the slash trail, which has the shape of a perfect disc. Works way better this way
Most materials here are using color gradients, so it was easy to make different versions. I tried to make them look a bit different in relatively short time, so mostly value tweaking of the materials and e.g. for the blue and yellow ones I used a different noise texture to make it look a little bit foamier/milkier.
Just dropping by when I realized I haven’t even shared anything about a cool VFX gig I worked on recently!
I had the chance to work on Vector Shift by Super Glitch Games, a high-speed sci-fi racing game for mobile with a distinct comic book aesthetic. One of its standout features is the thruster VFX customization, allowing players to tweak their ship’s look to their liking. The thruster effects dynamically respond to the ship’s speed and movement and are easily recolorable for deep player customization.
The missile trail and explosions are using the same customizable color setup, so when you shoot an enemy ship, the VFX will also match your chosen style.
All thruster VFX in this video were made by me. The ship materials were created by art director Joseph Patience.
I used Unity’s uGUI system (which is sometimes just called “Unity UI”). There is a newer UI system from Unity, called UI Toolkit, but many projects still use uGUI, so I wanted to see what I can do with it.
Material animations are pretty restricted. Vertex colors are one of the few things (or the only thing?) which is passed from an UI Image component to its assigned material. So I repurposed vertex colors in a custom shader and then put an animation on it.
Another important part was masking based on the button shape. For the materials I used the button texture as a mask. For the particles I used the Sprite Mask component plus the masking option in the particle system.
I also noticed that particle systems with a Transform component won’t show up in the UI, it needs to have the UI Transform component.