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 );
|
add( BG );
|
||||||
|
|
||||||
//darkens the arches
|
//darkens the arches
|
||||||
add(new ColorBlock(w, h, 0x88000000));
|
add(new ColorBlock(w, h, 0x44000000));
|
||||||
|
|
||||||
ScrollPane list = new ScrollPane( new Component() );
|
ScrollPane list = new ScrollPane( new Component() );
|
||||||
add( list );
|
add( list );
|
||||||
|
|||||||
@@ -81,10 +81,10 @@ public class WelcomeScene extends PixelScene {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (ShatteredPixelDungeon.versionCode == previousVersion && !SPDSettings.intro()) {
|
/*if (ShatteredPixelDungeon.versionCode == previousVersion && !SPDSettings.intro()) {
|
||||||
ShatteredPixelDungeon.switchNoFade(TitleScene.class);
|
ShatteredPixelDungeon.switchNoFade(TitleScene.class);
|
||||||
return;
|
return;
|
||||||
}
|
}*/
|
||||||
|
|
||||||
Music.INSTANCE.playTracks(
|
Music.INSTANCE.playTracks(
|
||||||
new String[]{Assets.Music.THEME_1, Assets.Music.THEME_2},
|
new String[]{Assets.Music.THEME_1, Assets.Music.THEME_2},
|
||||||
@@ -101,7 +101,7 @@ public class WelcomeScene extends PixelScene {
|
|||||||
add( BG );
|
add( BG );
|
||||||
|
|
||||||
//darkens the arches
|
//darkens the arches
|
||||||
add(new ColorBlock(w, h, 0x88000000));
|
add(new ColorBlock(w, h, 0x44000000));
|
||||||
|
|
||||||
w -= insets.left + insets.right;
|
w -= insets.left + insets.right;
|
||||||
h -= insets.top + insets.bottom;
|
h -= insets.top + insets.bottom;
|
||||||
|
|||||||
Reference in New Issue
Block a user