Concept
For the concept I was inspired by jellyfish and their movement in the wild. I tried to recreate their look with glowing circles to make the piece more aesthetic. Their movement is random, yet smooth, simulating real life movement but they also leave marks behind their movement for the overall look of the project.
Process
I started by just creating a class for the “creatures”, this included their initial positioning and their size. I then started implementing the movement, which was not that hard with the use of object oriented programming. For the movement, I wanted it to be random and smooth also so I used the noise function of p5js to achieve this. I then created a glowing feel to the creatures and also wanted to make them change colors smoothly and randomly similar to the movement. This proved to be a little bit difficult as noise function only returns 0 and 1 and I kept getting just the black color. To overcome this I had to use sin and cos functions which would keep the values between -1 and 1 and with some math achieve the wanted effect.
//useing the sin and cos which only return 1 or -1 to keep the values under 255 let r = 100 + 155 * sin(frameCount * 0.01 + this.noiseOffset); let g = 50 + 150 * cos(frameCount * 0.01 + this.noiseOffset); let b = 150 + 105 * sin(frameCount * 0.02 + this.noiseOffset); //create a glowing effect noStroke(); fill(r, g, b, 30); ellipse(0, 0, this.size * 1.5, this.size * 1.5);
Reflection and future improvements
It was fun to use object oriented programming in p5js. It proved to not be that difficult and made the overall project making experience easier. After some time the creatures leave the screen which could be interpreted as a feature and not a bug as they are being scared away from us looking at them. In the future I would maybe like to implement some interaction with the mouse, maybe they either group around the mouse or stay away from it. Overall a great learning experience!