Concept / Reference
At first, I was inspired by massive public projection mapping projects we can see in a lot of places, where a 2D pattern would be projected onto a 3D surface, but with edges aligned with the vertices of the actual building.
I was looking for 3D models of real-world buildings, and first found the Oriental Pearl Tower and the Wukang Building.
However, as I started implementing the B render pass, I added new contents such that a single building does not really fit my aesthetic choice, so I switched to a model of the entire Pudong skyline. Since it is a complex model, the file size is quite large.
A Render Pass
The A render pass started with loading the model and placing it in a correct and visible position. This includes translating, rotating, and scaling.
Second, I went to the fragment shader, added two colored lights.
Thirdly, I simply added some oscillation to the y and z of the vertices, making it looks wavy.
B Render Pass
At this point, this sketch reveals to be very similar to the synthwave aesthetics. Which are the 2010s retrospective appropriation towards the 1980s science-fiction, arcade, and pop culture named after the iconic warm and melodic synth sounds. Neon colors and grids, glowing trees and palm trees, futuristic city skylines, and sports cars are its common elements.
Hence, I leaned toward that visual representation.
Firstly, I created a glowing red-orange-yellow circle.
Secondly, I added a layer of gradient noise and blended it with the glowing circle. This creates a glowing and wavy feel to the background shape. Also, a y-axis blue gradient is also added to the scene.
The last step is just to blend A pass and B pass together, which I again used the different mode.
gl_FragColor = abs(.95*back - 1.4*video);
Final Outcome
Together, the oscillating effects create an illusion as if the air is overheating and creates optical disorders. The whole scene is made panoramic, and it successfully captured the kind of macro narrative of both synthwave aesthetics and our current future vision of the society. The only regret of this production is that the model file is too big so that sometimes the IDE breaks down.
You must be logged in to post a comment.