mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-05 05:07:48 +00:00
25 lines
827 B
XML
25 lines
827 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
|
|
<item>
|
|
<rotate xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:fromDegrees="-360"
|
|
android:toDegrees="1080"
|
|
android:pivotX="50%"
|
|
android:pivotY="50%">
|
|
<shape
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:shape="ring"
|
|
android:innerRadiusRatio="2.5"
|
|
android:thickness="2dp"
|
|
android:useLevel="false">
|
|
<gradient
|
|
android:endColor="@color/white"
|
|
android:startColor="@color/RbxOrange"
|
|
android:type="sweep"
|
|
android:useLevel="false" />
|
|
|
|
</shape>
|
|
</rotate>
|
|
</item>
|
|
</layer-list>
|