diff options
| author | 2023-03-22 04:46:57 -0400 | |
|---|---|---|
| committer | 2023-06-03 00:05:45 -0700 | |
| commit | 1c93ac8e034e0bf2c108bfde00cc0ca6d37b97e7 (patch) | |
| tree | a055e234ea41a83347d2b192e6230278b804fc79 /src/android | |
| parent | android: Remove unused string arrays (diff) | |
| download | yuzu-1c93ac8e034e0bf2c108bfde00cc0ca6d37b97e7.tar.gz yuzu-1c93ac8e034e0bf2c108bfde00cc0ca6d37b97e7.tar.xz yuzu-1c93ac8e034e0bf2c108bfde00cc0ca6d37b97e7.zip | |
android: Remove unused fragment animations
Diffstat (limited to 'src/android')
| -rw-r--r-- | src/android/app/src/main/res/animator/menu_slide_in_from_end.xml | 20 | ||||
| -rw-r--r-- | src/android/app/src/main/res/animator/menu_slide_out_to_end.xml | 21 |
2 files changed, 0 insertions, 41 deletions
diff --git a/src/android/app/src/main/res/animator/menu_slide_in_from_end.xml b/src/android/app/src/main/res/animator/menu_slide_in_from_end.xml deleted file mode 100644 index 3f1495c75..000000000 --- a/src/android/app/src/main/res/animator/menu_slide_in_from_end.xml +++ /dev/null | |||
| @@ -1,20 +0,0 @@ | |||
| 1 | <?xml version="1.0" encoding="utf-8"?> | ||
| 2 | <set xmlns:android="http://schemas.android.com/apk/res/android"> | ||
| 3 | |||
| 4 | <objectAnimator | ||
| 5 | android:propertyName="translationX" | ||
| 6 | android:valueType="floatType" | ||
| 7 | android:valueFrom="1280dp" | ||
| 8 | android:valueTo="0" | ||
| 9 | android:interpolator="@android:interpolator/decelerate_quad" | ||
| 10 | android:duration="300"/> | ||
| 11 | |||
| 12 | <objectAnimator | ||
| 13 | android:propertyName="alpha" | ||
| 14 | android:valueType="floatType" | ||
| 15 | android:valueFrom="0" | ||
| 16 | android:valueTo="1" | ||
| 17 | android:interpolator="@android:interpolator/accelerate_quad" | ||
| 18 | android:duration="300"/> | ||
| 19 | |||
| 20 | </set> \ No newline at end of file | ||
diff --git a/src/android/app/src/main/res/animator/menu_slide_out_to_end.xml b/src/android/app/src/main/res/animator/menu_slide_out_to_end.xml deleted file mode 100644 index d650237d6..000000000 --- a/src/android/app/src/main/res/animator/menu_slide_out_to_end.xml +++ /dev/null | |||
| @@ -1,21 +0,0 @@ | |||
| 1 | <?xml version="1.0" encoding="utf-8"?> | ||
| 2 | <set xmlns:android="http://schemas.android.com/apk/res/android"> | ||
| 3 | |||
| 4 | <!-- This animation is used ONLY when a submenu is replaced. --> | ||
| 5 | <objectAnimator | ||
| 6 | android:propertyName="translationX" | ||
| 7 | android:valueType="floatType" | ||
| 8 | android:valueFrom="0" | ||
| 9 | android:valueTo="1280dp" | ||
| 10 | android:interpolator="@android:interpolator/decelerate_quad" | ||
| 11 | android:duration="200"/> | ||
| 12 | |||
| 13 | <objectAnimator | ||
| 14 | android:propertyName="alpha" | ||
| 15 | android:valueType="floatType" | ||
| 16 | android:valueFrom="1" | ||
| 17 | android:valueTo="0" | ||
| 18 | android:interpolator="@android:interpolator/decelerate_quad" | ||
| 19 | android:duration="200"/> | ||
| 20 | |||
| 21 | </set> | ||