Art Update

Changed:
- Removed overlay and mask
- New art
This commit is contained in:
2026-07-28 19:27:10 -04:00
parent f86e7a6acd
commit 29dcf1061c
95 changed files with 5 additions and 22 deletions
+3 -3
View File
@@ -22,7 +22,7 @@ class ProgressBar {
if (index_string.length < 2) {
index_string = "0" + index_string;
}
img_fetcher.src = "src/Books/BookBar_v5_f00" + index_string + ".png";
img_fetcher.src = "src/Books/BookBar_v8_f00" + index_string + ".png";
image_cache.push(img_fetcher);
};
}
@@ -33,12 +33,12 @@ class ProgressBar {
if (val_string.length < 2) {
val_string = "0" + val_string;
}
this.bar_back.style.backgroundImage = "url(src/Books/BookBar_v5_f00" + val_string + ".png)";
this.bar_back.style.backgroundImage = "url(src/Books/BookBar_v8_f00" + val_string + ".png)";
setTimeout(this.antiFlash.bind(this), 150, val_string, val);
}
}
antiFlash(val_string, new_val) {
this.bar_front.style.backgroundImage = "url(src/Books/BookBar_v5_f00" + val_string + ".png)";
this.bar_front.style.backgroundImage = "url(src/Books/BookBar_v8_f00" + val_string + ".png)";
if ((new_val >= 0) && (new_val <= this.max_progress)) {
this.current_progress = new_val;
}