xxxxxxxxxx
36
var lain;
var currentText = "";
function preload(){
lain = new character();
}
function setup() {
createCanvas(window.innerWidth, window.innerHeight);
}
function draw() {
background("#461629");
lain.draw(width/2, height/2);
textFont(lain.font);
textSize(36);
textAlign(CENTER);
text(currentText, width/2, height/5);
}
function keyPressed(){
// lain.brain.say('hello');
lain.brain.hear(() => {
if (lain.brain.listen.resultValue === true)
{
currentText = lain.brain.listen.resultString;
}
else{
currentText = "";
}
})
}
window.onresize = function () {
resizeCanvas(window.innerWidth, window.innerHeight);
}