v3.2.4: softened the darkening fx on new background in welcome and about
This commit is contained in:
@@ -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 );
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user