v3.2.4: softened the darkening fx on new background in welcome and about

This commit is contained in:
Evan Debenham
2025-09-14 12:04:00 -04:00
parent 2c0f1263a7
commit 232f6b907d
2 changed files with 4 additions and 4 deletions

View File

@@ -56,7 +56,7 @@ public class AboutScene extends PixelScene {
add( BG );
//darkens the arches
add(new ColorBlock(w, h, 0x88000000));
add(new ColorBlock(w, h, 0x44000000));
ScrollPane list = new ScrollPane( new Component() );
add( list );

View File

@@ -81,10 +81,10 @@ public class WelcomeScene extends PixelScene {
return;
}
if (ShatteredPixelDungeon.versionCode == previousVersion && !SPDSettings.intro()) {
/*if (ShatteredPixelDungeon.versionCode == previousVersion && !SPDSettings.intro()) {
ShatteredPixelDungeon.switchNoFade(TitleScene.class);
return;
}
}*/
Music.INSTANCE.playTracks(
new String[]{Assets.Music.THEME_1, Assets.Music.THEME_2},
@@ -101,7 +101,7 @@ public class WelcomeScene extends PixelScene {
add( BG );
//darkens the arches
add(new ColorBlock(w, h, 0x88000000));
add(new ColorBlock(w, h, 0x44000000));
w -= insets.left + insets.right;
h -= insets.top + insets.bottom;