Desaturated the clouds' colors. Even less saturation for faraway ones.

Clouds speed should be even more consistent across different devices.
Also made the title screen's UI backgrounds "clickable" so a misclick
doesn't hide the UI too easily.
This commit is contained in:
Zukero
2018-03-26 16:26:52 +02:00
parent 055a2eaf32
commit 3b28c2f378
13 changed files with 8 additions and 3 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 937 B

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 852 B

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 872 B

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 814 B

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 596 B

After

Width:  |  Height:  |  Size: 734 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 609 B

After

Width:  |  Height:  |  Size: 786 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 509 B

After

Width:  |  Height:  |  Size: 587 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 432 B

After

Width:  |  Height:  |  Size: 379 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 491 B

After

Width:  |  Height:  |  Size: 515 B

View File

@@ -4,8 +4,8 @@
android:layout_height="wrap_content"
android:layout_gravity="bottom"
android:background="?attr/ui_theme_stdframe_bitmap"
android:gravity="top|start"
>
android:clickable="true"
android:gravity="top|start" >
<RelativeLayout
android:id="@+id/save_preview_hero_info"

View File

@@ -31,6 +31,7 @@
android:layout_marginLeft="2dp"
android:layout_marginRight="2dp"
android:background="?attr/ui_theme_stdframe_bitmap"
android:clickable="true"
android:gravity="bottom"
android:orientation="vertical" >

View File

@@ -12,6 +12,7 @@
android:layout_marginRight="2dp"
android:background="?attr/ui_theme_stdframe_bitmap"
android:gravity="bottom|start"
android:clickable="true"
android:orientation="vertical" >
<TextView
@@ -62,6 +63,7 @@
android:layout_marginLeft="2dp"
android:layout_marginRight="2dp"
android:background="?attr/ui_theme_stdframe_bitmap"
android:clickable="true"
android:gravity="bottom|start"
android:orientation="vertical" >
@@ -86,6 +88,7 @@
android:layout_marginLeft="2dp"
android:layout_marginRight="2dp"
android:background="?attr/ui_theme_stdframe_bitmap"
android:clickable="true"
android:gravity="center_vertical"
android:orientation="horizontal" >

View File

@@ -150,7 +150,6 @@ public class CloudsAnimatorView extends FrameLayout {
super.onWindowFocusChanged(hasWindowFocus);
if (hasWindowFocus) {
if (!started) {
duration = (int) (DEFAULT_DURATION * getWidth() / (1024 * getResources().getDisplayMetrics().density));
startAnimation();
started = true;
}
@@ -177,6 +176,8 @@ public class CloudsAnimatorView extends FrameLayout {
public void setScalingRatio(float ratio) {
this.scalingRatio = ratio;
duration = (int) (DEFAULT_DURATION * getWidth() / (1024 * ratio));
}
public void setYMax(int yMax) {