Removed unused images & Pipe image cropping now working

- removed unused images
- image cropping is now working (good enough)
- added htl-steyr-front.jpg as a background
- changed score font color
This commit is contained in:
dhain 2023-01-18 10:39:23 +01:00
parent f1babb7c13
commit 716d13c90b
11 changed files with 41 additions and 13 deletions

View file

@ -1,5 +1,5 @@
const PIPE_IMAGE_PATH: string = "resources/seesORsoos_sad_no-bg.png";
const BACKGROUND_IMAGE_PATH: string = "resources/raspberry-low-res.png";
const PIPE_IMAGE_PATH: string = "resources/dell-pc-min-min-small.png";
const BACKGROUND_IMAGE_PATH: string = "resources/htl-steyr-front.jpg";
const RASPBERRY_IMAGE_PATH: string = "resources/raspberry-rocket.png";
const FLOOR_IMAGE_PATH: string = "resources/table-min-min.png";
const FONT_PATH: string = "resources/PressStart2P-Regular.ttf";
@ -85,7 +85,8 @@ function setupObstacles() {
function instantiateObstacles(number: number) {
for (let i = 0; i < number; i++) {
obstacles.push(
new Obstacle(new Position(width + obstacleOffset * i, 0), OBSTACLE_WIDTH, height, pipeImage));
new Obstacle(new Position(width + obstacleOffset * i, 0), OBSTACLE_WIDTH, height, pipeImage)
);
}
}
@ -180,7 +181,7 @@ function die() {
*/
function displayScore() {
push();
fill(200, 100, 60);
fill(195, 33, 34);
text(score, 0, height / 10, width, height);
pop();
}