Are you able to add text to a background image? I am not getting text to show. “stage” is one of the background scenes included in the animation library.
function draw() {
var wall = createSprite(200, 200);
wall.setAnimation(“stage”);
textSize(20);
text(“Animations Got Talent”, 30, 100);
var note1 = createSprite(250, 150);
note1.setAnimation(“halfNote”);
note1.rotation = randomNumber(-5, 5);
var character1 = createSprite(200, 300);
character1.setAnimation(“girl”);
character1.scale = 0.5;
character1.rotation = randomNumber(-5, 5);
character1.x = randomNumber(190, 210);
…
drawSprites();
}