<html>
<h1> Untitled </h1>
<p> Hello. It’s a pleasure to meet you </p>
<p> Today I feel [happy] </P>
<p> I feel like the [sun]</p>
<p> [warm] </p>
<p> [bright] </p>
<p> Like the sea </p>
<p> [vast] </p>
<p> [lively] </p>
<p> Today I am [happy] </p>
<p> Today I feel like the universe is conspiring [in my favor] </p>
<p> I am [excited] to see how my life will unfold today </p>
<p> I [love] today </p>
<p> I [love] myself </p>
|
var title = 'Untitled'
function setup() {
createCanvas(800, 800);
}
function draw() {
background(220);
textSize(20);
textAlign(RIGHT);
text(title, 70, 30);
textSize (16)
textAlign (RIGHT)
text('Hola. Es un placer conocerlo(la)', 250, 60)
text('Hoy me siento [triste]', 175, 80)
text('Siento como la [luna]', 175, 100)
text('[frio]', 55, 120)
text('[solo]', 62, 140)
text('Como el mar', 115, 160)
text('[peligroso]', 100, 180)
text('[erratico]', 90, 200)
text('Hoy estoy [triste]', 145, 220)
text('Hoy siento como el universo esta conspirando [en contra de mi]', 475, 240)
text('[Temo] como mi vida se va desenvolver hoy', 335, 260)
text('[Odio] esta dia', 130, 280)
text('Me [odio]', 95, 300)
}
|
I decided to do a choose-your-own-adventure game, but was only able to do one scene with time constraints. I am debating whether to build off of it for my final project. http://philome.la/FillMorse/untitled
Comments
Post a Comment