xxxxxxxxxx
67
// Lee Revels
// hungry Burger
let frame = 0; // this contains the current frame being displayed
let testImg;
let characterFrames = new Array(3); // Create an array of variables that will hold the caracter animation frames
let alternativecharacterFrames = new Array(2);
function preload() {
// Assign images to the variables in the array
for (let i = 0; i < characterFrames.length; i++) {
let filename = "Img" + i + ".png";
characterFrames[i] = loadImage(filename);
print("Loading " + filename);
}
for (let i = 0; i < alternativecharacterFrames.length; i++) {
let filename = "AlernativeImg" + i + ".png";
alternativecharacterFrames[i] = loadImage(filename);
print("Loading " + filename);
}
testImg = loadImage("cat.png");
}
function setup() {
createCanvas(500, 500);
}
function draw() {
background(0);
image(testImage, 0, 0);
//animation();
if(mouseIsPressed) {
background(0, 255, 0);
//alternativeAnimation();
}
}
function animation() {
if (frame == 0) {
image(characterFrames[frame], 0, 0);
}
if (frame == 1) {
image(characterFrames[frame], 0, 0);
}
if (frame == 2) {
image(characterFrames[frame], 0, 0);
}
if (frameCount % 15 == 0) frame++; // How fast you want the animation to run
if (frame >= 3) frame = 0; // loop the animation by returning to 0
}
function alternativeAnimation() {
if (frame == 0) {
image(alternativecharacterFrames[frame], 0, 0);
}
if (frame == 1) {
image(alternativecharacterFrames[frame], 0, 0);
}
if (frameCount % 15 == 0) frame++; // How fast you want the animation to run
if (frame >= 2) frame = 0; // loop the animation by returning to 0
}