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.
|
Before Width: | Height: | Size: 937 B After Width: | Height: | Size: 1.8 KiB |
|
Before Width: | Height: | Size: 852 B After Width: | Height: | Size: 1.2 KiB |
|
Before Width: | Height: | Size: 872 B After Width: | Height: | Size: 1.3 KiB |
|
Before Width: | Height: | Size: 814 B After Width: | Height: | Size: 1.2 KiB |
|
Before Width: | Height: | Size: 596 B After Width: | Height: | Size: 734 B |
|
Before Width: | Height: | Size: 609 B After Width: | Height: | Size: 786 B |
|
Before Width: | Height: | Size: 509 B After Width: | Height: | Size: 587 B |
|
Before Width: | Height: | Size: 432 B After Width: | Height: | Size: 379 B |
|
Before Width: | Height: | Size: 491 B After Width: | Height: | Size: 515 B |
@@ -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"
|
||||
|
||||
@@ -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" >
|
||||
|
||||
|
||||
@@ -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" >
|
||||
|
||||
|
||||
@@ -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) {
|
||||
|
||||