Initial Android commit

This commit is contained in:
OleSTEEP 2024-11-10 03:34:28 +03:00
commit 1e2b80c13d
8521 changed files with 231475 additions and 0 deletions

View file

@ -0,0 +1,30 @@
[gd_scene load_steps=5 format=2]
[ext_resource path="res://resources/fonts/OneEleven.ttf" type="DynamicFontData" id=1]
[ext_resource path="res://resources/Themes/EmptyFocusTheme.tres" type="StyleBox" id=2]
[ext_resource path="res://scripts/CustomControls/GalleryPaginationButton.gd" type="Script" id=3]
[sub_resource type="DynamicFont" id=1]
size = 80
outline_size = 3
outline_color = Color( 0, 0, 0, 1 )
font_data = ExtResource( 1 )
[node name="Button" type="Button"]
anchor_right = 1.0
anchor_bottom = 1.0
margin_right = -1874.0
margin_bottom = -976.0
custom_colors/font_color_disabled = Color( 0, 0, 0, 1 )
custom_colors/font_color = Color( 1, 1, 1, 1 )
custom_colors/font_color_hover = Color( 0, 0, 0, 1 )
custom_colors/font_color_pressed = Color( 0, 0, 0, 1 )
custom_fonts/font = SubResource( 1 )
custom_styles/focus = ExtResource( 2 )
text = "1"
flat = true
script = ExtResource( 3 )
[connection signal="mouse_entered" from="." to="." method="_on_Button_mouse_entered"]
[connection signal="mouse_exited" from="." to="." method="_on_Button_mouse_exited"]
[connection signal="pressed" from="." to="." method="_on_Button_pressed"]