xxxxxxxxxx
29
var font;
function preload() {
font = loadFont('Helvetica.ttf');
}
var words = ["Can you remember the last time your mother held you?", "How it felt so good, you didn't want it to stop?", "The sea really is our Great Mother", "She can rock you for forever", "For as long as you need", "Even if you need it until you'll die", "I went to the sea the other night, looking for you", "And as I sat under the waves", "I kept staring at the black horizon", "And I got the overwhelming sense that you had gone there", "The waves are so loud", "The black horizon", "It comes towards me","It haunts me in my dreams"];
var index = 0;
function setup() {
createCanvas(800, 500);
}
function draw() {
background(0);
fill(255,255,0);
textSize(30);
textFont(font);
text(words[index],13, 485)
}
function mousePressed() {
index = index +1;
if (index == words.length){
index = 0;
}
}