This sword scene is an effort to display my abilities in look development. The sword bursts with power before disintegrating away, unable to contain the energy imbued inside. I'll continue to work on this scene.
Candle shader
The candle shader is not driven by a flipbook! To keep texture calls low but to achieve the same motion, I panned a cloud texture upward, scaled down and spanning both negative and positive values to shift the UVs left and right as it moves up. Seeing as combustion is driven by rising gases, the cloudy texture delivers that motion well and on a budget.
This section pans the cloudy texture upward with a bobbing rotation left and right, like a pendulum, to imitate the change in wind direction in a room. The sine wave drives the horizontal pan left and right as it goes from negative to positive space. The randomization node grabs a random value from 0-1 for each instance of the flame particle, and that shifts the texture left and right to provide variation in the animation in each instance. That way, we don't see any repeating animations stamped throughout the room.
In this section, we scale the values of the cloudy texture down and shift them negatively. Remapping it's values from 0-1 to something like -0.1 to 0.1, for gradual additions and subtractions for each UV coordinate.
Finally, we add these panning values to a linear gradient, append it to another, and use this as a map for the textures UV distortion. With this entire process, we used two channels from a single, non-alpha, low resolution texture to create a VERY realistic candle animation.
Sword Disintegration Function
The way I had modelled and textured my sword, long long ago, split the textures into its four parts: blade, hilt, handle, and pommel. Each of these faced a different direction in the sword's UV map, so a simple linear gradient wouldn't work in driving the transition. I needed to get creative.
In Unreal Engine 4's material editor, I created a material function that would give me a few inputs to work with that would transition vertically across an object based on its world space instead of its UV space. This way I could plug the function into each texture for the sword's individual parts and drive them all in one controller. For later usage, I also made it so that you could choose your beginning and end textures so that I could apply this to future meshes if I need a simple vertical material transition.
Smoke Distortion Function
In another effort to learn shaders and avoid the memory consumption of flipbooks, I wrote a function for UV distortion that gives an impression of wispy smoke's inner swirling motion through UV distortion.
I gave it four inputs: how fast the distortion parameters pan in the X and Y (U and V) directions; and how much it shifted each texel on the X and Y (U and V) directions by scaling the noise values. These noise textures I have imported are used for the lack of a robust noise function in Unreal's material editor. Hopefully it becomes a bit more pliable in the future for UV play.
This function drives the motion for all the smoke in the scene.
Cracking Transition
The material transition of the crack and runes cast across the blade are integrated in the sword's UV space. An animated value controls the transition by panning across the coordinates of a linear gradient. The material pans a noisy, hot, black-body shader to give an impression of intense heat within.
Transition Shine
The shining light that pans across the runes and crack is done with two material transitions, one delayed slightly behind the first. This line is given a bright, black-body emissive material to show the shine. Pardon the spaghetti. I'm still waiting for Epic to add reroute anchors for the connections like they have in their Blueprint editor.
If you have any questions or if you would like for me to expand on any of this feel free to email me.