Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion assets/logos/icon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions godot_only/android_icons/splash_icon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
43 changes: 43 additions & 0 deletions godot_only/android_icons/splash_icon.svg.import
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
[remap]

importer="texture"
type="CompressedTexture2D"
uid="uid://ch0tgbpqlxwq"
path="res://.godot/imported/splash_icon.svg-283fa5551204ec4f19d57f7f8ddf241b.ctex"
metadata={
"vram_texture": false
}

[deps]

source_file="res://godot_only/android_icons/splash_icon.svg"
dest_files=["res://.godot/imported/splash_icon.svg-283fa5551204ec4f19d57f7f8ddf241b.ctex"]

[params]

compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/channel_remap/red=0
process/channel_remap/green=1
process/channel_remap/blue=2
process/channel_remap/alpha=3
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1
svg/scale=1.0
editor/scale_with_editor_scale=false
editor/convert_colors_with_editor_theme=false
46 changes: 20 additions & 26 deletions godot_only/splash_anim.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,22 +3,21 @@

<aapt:attr name="android:drawable">
<vector
android:width="320dp"
android:height="320dp"
android:width="288dp"
android:height="288dp"
android:viewportWidth="288"
android:viewportHeight="288">

<path
android:name="ring_path"
android:pathData="M144,144m-110,0a110,110 0,1 1,220 0a110,110 0,1 1,-220 0"
android:strokeWidth="18"
android:fillColor="#00000000">
android:pathData="M144.02,144.02m-75,0a75,75 0,1 1,150 0a75,75 0,1 1,-150 0"
android:strokeWidth="12.27"
android:fillColor="#1a1a1a">
<aapt:attr name="android:strokeColor">
<gradient
android:startX="34"
android:startY="34"
android:endX="254"
android:endY="254"
android:startX="69.02"
android:startY="69.02"
android:endX="219.02"
android:endY="219.02"
android:type="linear">
<item android:offset="0" android:color="#FFFF5F6D"/>
<item android:offset="0.25" android:color="#FFFFC371"/>
Expand All @@ -30,41 +29,36 @@
</path>

<group android:name="v_group" android:pivotX="144" android:pivotY="144">
<path android:pathData="M72,106 L124,202 144,166 112,106Z" android:fillColor="#0af"/>
<path android:pathData="M144,166 L164,202 216,106H184Z" android:fillColor="#07c"/>
<path android:pathData="M124,202 L144,166 164,202Z" android:fillColor="#057"/>
<path
android:pathData="M94.93,118.11 L130.38,183.56 144.02,159.02 122.2,118.11Z"
android:fillColor="#0af"/>
<path
android:pathData="M144.02,159.02 L157.66,183.56 193.11,118.11L171.29,118.11Z"
android:fillColor="#07c"/>
<path
android:pathData="M130.38,183.56 L144.02,159.02 157.66,183.56Z"
android:fillColor="#057"/>
</group>

</vector>
</aapt:attr>

<target android:name="ring_path">
<aapt:attr name="android:animation">
<objectAnimator
android:propertyName="strokeAlpha"
android:duration="300"
android:valueFrom="0"
android:valueTo="1"
android:interpolator="@android:interpolator/fast_out_slow_in"/>
</aapt:attr>
</target>

<target android:name="v_group">
<aapt:attr name="android:animation">
<set android:ordering="together">
<objectAnimator
android:propertyName="scaleX"
android:duration="750"
android:valueFrom="1"
android:valueTo="1.07"
android:valueTo="1.2"
android:repeatCount="infinite"
android:repeatMode="reverse"
android:interpolator="@android:interpolator/accelerate_decelerate" />
<objectAnimator
android:propertyName="scaleY"
android:duration="750"
android:valueFrom="1"
android:valueTo="1.07"
android:valueTo="1.2"
android:repeatCount="infinite"
android:repeatMode="reverse"
android:interpolator="@android:interpolator/accelerate_decelerate" />
Expand Down