Tag: Creativity
-
Creating a simple outline shader

Learn how to create a simple outline around an image in a fragment shader using the GLSL programming language. Easily portable to other shader languages.
-
Creating a drop shadow effect in GIMP

Learn how to apply a drop shadow effect to any image in the GIMP image editor by creating a shadow layer and applying gaussian blur. The process is similar for other image editors like Adobe Photoshop.
-
Happy year of the dragon!

I decided to combine the year of the dragon with the hearts of valentine’s day. My idea was to draw a dragon which fires hearts out of it’s mouth. So I started with the dragon, then drew the hearts. I then added the text, and finally the frame. The sprite is made up of 13…
-
Drawing random shapes using probability in Processing

Learn how to use random numbers and probability to draw random shapes in Processing using the Java programming language.
-
Generating terrain in an infinite world

It would be impossible to hand craft an infinite world, so instead I generate a terrain sprite outside the camera viewport. I use the length of the camera and terrain rectangles, the direction the player is currently moving in and circles to position the terrain, so it is always just outside the viewport. Old terrain…
-
Heart regen animation

I created these heart regeneration animations using a mixture of coding and pixel art. The heart fills up and particles constantly spawn. When the heart is full it scales up in size, using the scale and barrel distortion. It also gets brighter, before returning to normal size.
-
Creating a television effect in a shader

Learn how to create a animated television effect in a GLSL shader by combining various effects such as barrel distortion, scanlines, random noise, vignette, gradients and duotones.
-
Creating a simple noise effect in Shadertoy

Learn how to create a simple animated noise effect in Shadertoy, and mix it with a texture to create an old, damaged footage look.
-
Combining scanlines with a texture in Shadertoy

Learn how to combine the scanlines we created in the last tutorial, with a texture in Shadertoy using GLSL. We will use mix, multiply and gradients to create some interesting scanlines.
-
Creating a scanline effect in Shadertoy

Learn how to create a scanline shader in Shadertoy using floor and modulus. Use it to give your images a old CRT television or computer monitor look, or create cool backgrounds.
