mirror of
https://github.com/lov3b/h_ng_dig.git
synced 2025-01-18 12:50:11 +01:00
Added goblet
This commit is contained in:
parent
1bc9d1c9f6
commit
1cf58dd39f
BIN
data/goblet.png
Normal file
BIN
data/goblet.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 105 KiB |
@ -35,6 +35,7 @@ final color svart = color(0);
|
|||||||
// En array över de olika bilderna för olika stadier i användarens fel.
|
// En array över de olika bilderna för olika stadier i användarens fel.
|
||||||
PImage[] kulle = new PImage[8];
|
PImage[] kulle = new PImage[8];
|
||||||
PImage sun;
|
PImage sun;
|
||||||
|
PImage pokal;
|
||||||
|
|
||||||
// Sound
|
// Sound
|
||||||
SoundFile boing;
|
SoundFile boing;
|
||||||
@ -52,12 +53,14 @@ void setup() {
|
|||||||
kulle[i] = loadImage("Kulle"+i+".png");
|
kulle[i] = loadImage("Kulle"+i+".png");
|
||||||
}
|
}
|
||||||
sun = loadImage("sun.png");
|
sun = loadImage("sun.png");
|
||||||
sun.resize(120, 101 );
|
pokal = loadImage("goblet.png");
|
||||||
|
|
||||||
//Resize
|
//Resize
|
||||||
for (int i=0; i < 8; i++) {
|
for (int i=0; i < 8; i++) {
|
||||||
kulle[i].resize(2554/2, 1216/2);
|
kulle[i].resize(2554/2, 1216/2);
|
||||||
}
|
}
|
||||||
|
sun.resize(120, 101 );
|
||||||
|
pokal.resize(520/3,601/3);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Dela det valda ordet in till enstaka bokstaver i en array.
|
// Dela det valda ordet in till enstaka bokstaver i en array.
|
||||||
@ -294,6 +297,7 @@ void drawWin() {
|
|||||||
textAlign(LEFT, LEFT);
|
textAlign(LEFT, LEFT);
|
||||||
text("Rätt ord: "+storForstaBokstav(), 50, 50);
|
text("Rätt ord: "+storForstaBokstav(), 50, 50);
|
||||||
textAlign(CENTER, CENTER);
|
textAlign(CENTER, CENTER);
|
||||||
|
image(pokal,(width/2)-520/6,150);
|
||||||
skrivGissningar();
|
skrivGissningar();
|
||||||
if (mousePressed) {
|
if (mousePressed) {
|
||||||
// Återställ viktiga variabler
|
// Återställ viktiga variabler
|
||||||
|
Loading…
x
Reference in New Issue
Block a user