Week 3 : Generative Art

Concept

For this assignment, I tried to incorporate OOP, arrays, and functions to present my work  as a rainy scene with a statue in front of it. As I watch videos from The Coding Train on this, and instantly knew what I can do for my assignment.

My assignment is heavily inspired by a video game called “Undertale” because it was a game I used to play that impacts me through its characters and themes of kindness and determination, and the statue in the game (see below) sits silently in rain alone, that really evokes a lot of emotions when looking at it.
Posts with replies by thekingmrturtle (@thekingmrturtle) / X

From my understanding of the videos and practices using p5.js, I used classes to create objects such as raindrops, the statue, and the umbrella, making sure everything was organized and reusable. The raindrops are held in an array so that continuous rain can be achieved, while the statue and umbrella are static, reinforcing the contrast between movement and stillness. With this, I aimed for this assignment to recreate similar feelings of peace and contentment like how the game does in that scene.

Code Highlights

One snippet I am proud of is this one:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
display() {
noStroke();
fill(255); // White color for the raindrop
rect(this.x, this.y, 2, 10); // Draw the raindrop as a rectangle
//Light shape and color
fill('rgba(221,221,133,0.36)')
triangle(50, 400, 200, -50, 350, 400);
display() { noStroke(); fill(255); // White color for the raindrop rect(this.x, this.y, 2, 10); // Draw the raindrop as a rectangle //Light shape and color fill('rgba(221,221,133,0.36)') triangle(50, 400, 200, -50, 350, 400);
display() {
  noStroke();
  fill(255);  // White color for the raindrop
  rect(this.x, this.y, 2, 10); // Draw the raindrop as a rectangle
  
  //Light shape and color
  fill('rgba(221,221,133,0.36)')
  triangle(50, 400, 200, -50, 350, 400);

 

This is because it adds a subtle lighting effect that improves the scene’s ambiance in addition to producing a straightforward but effective raindrop. As I wanted to add light within the background, I noticed that, when playing the animation, it started to illuminate, and I was surprised. Although the raindrop itself is simple, the triangle shape’s gentle glow creates the illusion of diffused light, similar to a street light.

Embedded Sketch

Reflections

Overall, this was a really simple project with the help of arrays keeping the raindrops structured yet drops at random points and time. I really enjoyed trying to make my project come close to my inspiration although i didn’t fully incorporate everything else. Despite this, I struggled with trying to allow the drops to hit the umbrella, resulting in what it seems to be raining in the background, than on top of the umbrella (like my inspiration). As a result, I can work around that, along with adding some additional details to the project, like moving the umbrella towards the statue.

Leave a Reply