xxxxxxxxxx
50
var dragon
function setup() {
createCanvas(1426, 823);
dragon = loadImage("/askarran-no-bg.png")
}
var DTcount = 0
function draw() {
background(236, 242, 246);
DTcount += round(deltaTime/1000,3)
noFill()
stroke(210, 225, 246);
strokeWeight(20)
rect(10,10,1406,803)
strokeWeight(5)
rect(765, 510, 430, 50)
rect(105, 610, 330, 60)
noStroke()
fill(210, 225, 246)
textSize(15)
textFont('Roboto')
text("nothing out here but the cold --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------empty wastelan filled with nothing but snow and a desprate clawing for survival", 0, 320)
text("I wish there was something of value out here a pillar or something that isnt this endless boring viscous expanse of nothingness why must this take so long why must this awful task sustain my existence maybe I can find peace in this white void but I seriously doubt it", 0, 400)
text("ramblings ramblings on and on what does a mind do when it has nothing to occupy itself with I am an animal compared to them why dont I just make them bleed because they sustain my existence and I cannot do such a thing ah what a curse or blessing I cant decide just keep talking the snow won't get to me", 0, 420)
text("sometime I'll get there I just have to keep going this is all I'm useful for I'm just some pack animal that refuses to die in this cold aren't I don't have any real value compared to those thin skulled primates no all I get is claws and teeth which I'm not allowed to use", 0, 550)
text("why am I still here what am I working for why is this so important what will I do when I'm done it will get better please belive that its all we have please don't stop talking I'm all I have the wind is bitter and I must keep going for what why what is this for why am I", 0, 720)
for(let x = 0; x < 8; x++){
for(let y = 0; y < 4; y++){
(noise(DTcount * 0.7 + (x*0.1),0.11 + (y*0.1)) > 0.5)? noFill(): fill(210, 225, 246)
rect(300 + (x*12), 100 + (y*12), 10, 10)
}
}
image(dragon, 0,0)
}