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,57 @@
[gd_scene load_steps=6 format=2]
[ext_resource path="res://scripts/CustomControls/SaveSlot.gd" type="Script" id=1]
[sub_resource type="DynamicFontData" id=5]
font_path = "res://resources/fonts/OneEleven.ttf"
[sub_resource type="DynamicFont" id=6]
size = 55
outline_size = 3
outline_color = Color( 0, 0, 0, 1 )
use_filter = true
font_data = SubResource( 5 )
[sub_resource type="DynamicFontData" id=3]
font_path = "res://resources/fonts/OneEleven.ttf"
[sub_resource type="DynamicFont" id=4]
size = 45
outline_size = 3
outline_color = Color( 0, 0, 0, 1 )
use_filter = true
font_data = SubResource( 3 )
[node name="Control" type="Control"]
margin_right = 576.0
margin_bottom = 324.0
script = ExtResource( 1 )
[node name="Frame" type="ColorRect" parent="."]
visible = false
margin_right = 576.0
margin_bottom = 324.0
[node name="SlotImage" type="TextureButton" parent="."]
margin_right = 40.0
margin_bottom = 40.0
[node name="SlotName" type="Label" parent="."]
margin_right = 576.0
margin_bottom = 324.0
custom_fonts/font = SubResource( 6 )
text = "TEMP"
align = 1
valign = 1
[node name="Date" type="Label" parent="."]
margin_top = 268.0
margin_right = 576.0
margin_bottom = 324.0
custom_fonts/font = SubResource( 4 )
align = 1
valign = 2
[connection signal="button_up" from="SlotImage" to="." method="_on_SlotImage_button_up"]
[connection signal="mouse_entered" from="SlotImage" to="." method="_on_SlotImage_mouse_entered"]
[connection signal="mouse_exited" from="SlotImage" to="." method="_on_SlotImage_mouse_exited"]