Initial Android commit
This commit is contained in:
commit
1e2b80c13d
8521 changed files with 231475 additions and 0 deletions
|
@ -0,0 +1,36 @@
|
|||
[gd_scene load_steps=4 format=2]
|
||||
|
||||
[ext_resource path="res://scripts/CustomControls/GalleryBackground.gd" type="Script" id=1]
|
||||
[ext_resource path="res://resources/AlternativeChoices/HoverAlternative.gdshader" type="Shader" id=2]
|
||||
|
||||
[sub_resource type="ShaderMaterial" id=1]
|
||||
shader = ExtResource( 2 )
|
||||
shader_param/mixing = 0.0
|
||||
|
||||
[node name="Control" type="Control"]
|
||||
anchor_right = 1.0
|
||||
anchor_bottom = 1.0
|
||||
margin_right = -1520.0
|
||||
margin_bottom = -1030.0
|
||||
size_flags_horizontal = 0
|
||||
size_flags_vertical = 2
|
||||
script = ExtResource( 1 )
|
||||
|
||||
[node name="ColorRect" type="ColorRect" parent="."]
|
||||
margin_left = -2.0
|
||||
margin_top = -2.0
|
||||
margin_right = 290.0
|
||||
margin_bottom = 164.0
|
||||
|
||||
[node name="TextureRect" type="TextureRect" parent="."]
|
||||
material = SubResource( 1 )
|
||||
margin_right = 40.0
|
||||
margin_bottom = 40.0
|
||||
|
||||
[node name="ResizeTimer" type="Timer" parent="."]
|
||||
wait_time = 0.1
|
||||
one_shot = true
|
||||
autostart = true
|
||||
|
||||
[connection signal="gui_input" from="." to="." method="_on_Control_gui_input"]
|
||||
[connection signal="timeout" from="ResizeTimer" to="." method="_on_ResizeTimer_timeout"]
|
|
@ -0,0 +1,43 @@
|
|||
[gd_scene load_steps=6 format=2]
|
||||
|
||||
[ext_resource path="res://scripts/CustomControls/GalleryMusicPlayer.gd" type="Script" id=1]
|
||||
[ext_resource path="res://resources/fonts/TimesNewerRoman-Regular.otf" type="DynamicFontData" id=2]
|
||||
[ext_resource path="res://resources/graphics/GUI/Gallery/Play.webp" type="Texture" id=3]
|
||||
[ext_resource path="res://resources/Themes/EmptyFocusTheme.tres" type="StyleBox" id=4]
|
||||
|
||||
[sub_resource type="DynamicFont" id=1]
|
||||
size = 36
|
||||
use_mipmaps = true
|
||||
font_data = ExtResource( 2 )
|
||||
|
||||
[node name="Control" type="Control"]
|
||||
anchor_right = 1.0
|
||||
anchor_bottom = 1.0
|
||||
margin_right = -1520.0
|
||||
margin_bottom = -1030.0
|
||||
size_flags_horizontal = 0
|
||||
size_flags_vertical = 2
|
||||
script = ExtResource( 1 )
|
||||
|
||||
[node name="Polygon2D" type="Polygon2D" parent="."]
|
||||
invert_enable = true
|
||||
invert_border = 2.0
|
||||
polygon = PoolVector2Array( 2, 2, 400, 2, 400, 50, 2, 50 )
|
||||
|
||||
[node name="Label" type="Label" parent="."]
|
||||
margin_left = 50.0
|
||||
margin_top = 5.0
|
||||
margin_right = 348.0
|
||||
margin_bottom = 50.0
|
||||
custom_fonts/font = SubResource( 1 )
|
||||
text = "Don't Stop Me Now"
|
||||
|
||||
[node name="Button" type="Button" parent="."]
|
||||
margin_right = 42.0
|
||||
margin_bottom = 40.0
|
||||
custom_styles/focus = ExtResource( 4 )
|
||||
toggle_mode = true
|
||||
icon = ExtResource( 3 )
|
||||
flat = true
|
||||
|
||||
[connection signal="pressed" from="Button" to="." method="_on_Button_pressed"]
|
|
@ -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"]
|
|
@ -0,0 +1,29 @@
|
|||
[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/GalleryStateButton.gd" type="Script" id=3]
|
||||
|
||||
[sub_resource type="DynamicFont" id=1]
|
||||
size = 60
|
||||
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 = Color( 1, 1, 1, 1 )
|
||||
custom_colors/font_color_hover = Color( 0, 0, 0, 1 )
|
||||
custom_colors/font_color_pressed = Color( 0.545098, 0.545098, 0.545098, 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"]
|
Loading…
Add table
Add a link
Reference in a new issue