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,68 @@
[gd_scene load_steps=8 format=2]
[ext_resource path="res://resources/fonts/OneEleven.ttf" type="DynamicFontData" id=1]
[ext_resource path="res://resources/graphics/GUI/Menu/Difficulties/hard_background.webp" type="Texture" id=2]
[ext_resource path="res://resources/graphics/GUI/Menu/Difficulties/separator.webp" type="Texture" id=4]
[ext_resource path="res://scripts/CustomControls/DifficultySelector/DifficultySelector.gd" type="Script" id=5]
[sub_resource type="DynamicFont" id=1]
size = 156
use_filter = true
font_data = ExtResource( 1 )
[sub_resource type="DynamicFontData" id=2]
font_path = "res://resources/fonts/OneEleven.ttf"
[sub_resource type="DynamicFont" id=3]
size = 64
use_filter = true
font_data = SubResource( 2 )
[node name="Control" type="Button"]
anchor_right = 1.0
anchor_bottom = 1.0
margin_right = -1020.0
margin_bottom = 16.0
rect_min_size = Vector2( 900, 1200 )
flat = true
script = ExtResource( 5 )
[node name="Background" type="TextureRect" parent="."]
margin_right = 900.0
margin_bottom = 1200.0
texture = ExtResource( 2 )
[node name="Header" type="Label" parent="."]
margin_top = 61.0
margin_right = 900.0
margin_bottom = 252.0
custom_fonts/font = SubResource( 1 )
text = "HARD"
align = 1
valign = 1
[node name="Title" type="Label" parent="."]
margin_top = 195.0
margin_right = 900.0
margin_bottom = 386.0
custom_fonts/font = SubResource( 3 )
text = "One way ticket"
align = 1
valign = 1
[node name="Separator" type="TextureRect" parent="."]
margin_left = 164.0
margin_top = 353.0
margin_right = 735.0
margin_bottom = 371.0
texture = ExtResource( 4 )
[node name="Explanations" type="VBoxContainer" parent="."]
margin_left = 189.0
margin_top = 411.0
margin_right = 900.0
margin_bottom = 490.0
custom_constants/separation = 48
[connection signal="mouse_entered" from="." to="." method="_on_Control_mouse_entered"]
[connection signal="mouse_exited" from="." to="." method="_on_Control_mouse_exited"]