summaryrefslogtreecommitdiffstats
path: root/src/android/app/src/main/res/animator/settings_pop_enter.xml
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2022-12-18 08:25:46 +0100
committerbunnei <bunneidev@gmail.com>2023-06-03 09:05:26 +0200
commitbb2cbbfba3ba255c11953f2bcca912046519cfb1 (patch)
treeb72691480e35039d67c0bd703596f1ae214bdaa7 /src/android/app/src/main/res/animator/settings_pop_enter.xml
parentcmake: Integrate bundled FFmpeg for Android. (diff)
downloadyuzu-bb2cbbfba3ba255c11953f2bcca912046519cfb1.tar
yuzu-bb2cbbfba3ba255c11953f2bcca912046519cfb1.tar.gz
yuzu-bb2cbbfba3ba255c11953f2bcca912046519cfb1.tar.bz2
yuzu-bb2cbbfba3ba255c11953f2bcca912046519cfb1.tar.lz
yuzu-bb2cbbfba3ba255c11953f2bcca912046519cfb1.tar.xz
yuzu-bb2cbbfba3ba255c11953f2bcca912046519cfb1.tar.zst
yuzu-bb2cbbfba3ba255c11953f2bcca912046519cfb1.zip
Diffstat (limited to 'src/android/app/src/main/res/animator/settings_pop_enter.xml')
-rw-r--r--src/android/app/src/main/res/animator/settings_pop_enter.xml28
1 files changed, 28 insertions, 0 deletions
diff --git a/src/android/app/src/main/res/animator/settings_pop_enter.xml b/src/android/app/src/main/res/animator/settings_pop_enter.xml
new file mode 100644
index 000000000..080bc27c4
--- /dev/null
+++ b/src/android/app/src/main/res/animator/settings_pop_enter.xml
@@ -0,0 +1,28 @@
+<?xml version="1.0" encoding="utf-8"?>
+<set xmlns:android="http://schemas.android.com/apk/res/android">
+
+ <objectAnimator
+ android:duration="@android:integer/config_mediumAnimTime"
+ android:interpolator="@android:interpolator/decelerate_cubic"
+ android:propertyName="visibleness"
+ android:valueFrom="0.6f"
+ android:valueTo="1.0f"
+ android:valueType="floatType" />
+
+ <objectAnimator
+ android:duration="@android:integer/config_mediumAnimTime"
+ android:interpolator="@android:interpolator/decelerate_cubic"
+ android:propertyName="translationZ"
+ android:startOffset="@android:integer/config_shortAnimTime"
+ android:valueFrom="-100.0"
+ android:valueTo="0" />
+
+ <objectAnimator
+ android:duration="@android:integer/config_mediumAnimTime"
+ android:interpolator="@android:interpolator/decelerate_cubic"
+ android:propertyName="elevation"
+ android:startOffset="@android:integer/config_shortAnimTime"
+ android:valueFrom="-100.0"
+ android:valueTo="0" />
+
+</set> \ No newline at end of file