-
Notifications
You must be signed in to change notification settings - Fork 1
/
level_button.tscn
92 lines (81 loc) · 2.74 KB
/
level_button.tscn
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
[gd_scene load_steps=15 format=2]
[ext_resource path="res://assets/ui/big-def.png" type="Texture" id=1]
[ext_resource path="res://assets/ui/big-hov.png" type="Texture" id=2]
[ext_resource path="res://assets/ui/big-dis.png" type="Texture" id=3]
[ext_resource path="res://scripts/level_button.gd" type="Script" id=4]
[ext_resource path="res://assets/SpicyRice-23Mo.ttf" type="DynamicFontData" id=5]
[ext_resource path="res://themes/menu_button.tres" type="Theme" id=6]
[ext_resource path="res://stars.tscn" type="PackedScene" id=7]
[ext_resource path="res://assets/ui/big-pres.png" type="Texture" id=8]
[sub_resource type="DynamicFont" id=9]
size = 100
outline_size = 6
outline_color = Color( 0.380392, 0.0784314, 0.0901961, 1 )
use_filter = true
font_data = ExtResource( 5 )
[sub_resource type="StyleBoxTexture" id=10]
texture = ExtResource( 2 )
region_rect = Rect2( 0, 0, 106, 105 )
margin_left = 35.0
margin_right = 35.0
margin_top = 10.0
margin_bottom = 10.0
[sub_resource type="StyleBoxTexture" id=11]
texture = ExtResource( 8 )
region_rect = Rect2( 0, 0, 103, 102 )
margin_left = 35.0
margin_right = 35.0
margin_top = 10.0
margin_bottom = 10.0
[sub_resource type="StyleBoxTexture" id=12]
texture = ExtResource( 1 )
region_rect = Rect2( 0, 0, 105, 105 )
margin_left = 35.0
margin_right = 35.0
margin_top = 10.0
margin_bottom = 10.0
[sub_resource type="StyleBoxTexture" id=13]
texture = ExtResource( 3 )
region_rect = Rect2( 0, 0, 105, 105 )
margin_left = 35.0
margin_right = 35.0
margin_top = 10.0
margin_bottom = 10.0
[sub_resource type="StyleBoxTexture" id=14]
texture = ExtResource( 1 )
region_rect = Rect2( 0, 0, 105, 105 )
margin_left = 35.0
margin_right = 35.0
margin_top = 10.0
margin_bottom = 10.0
[node name="level0" type="VBoxContainer"]
margin_right = 244.0
margin_bottom = 227.0
script = ExtResource( 4 )
[node name="btnLevel" type="Button" parent="."]
margin_left = 51.0
margin_right = 193.0
margin_bottom = 159.0
focus_mode = 0
size_flags_horizontal = 4
theme = ExtResource( 6 )
custom_colors/font_color_disabled = Color( 1, 1, 1, 1 )
custom_colors/font_color_focus = Color( 1, 1, 1, 1 )
custom_colors/font_color = Color( 0.996078, 0.996078, 0.996078, 1 )
custom_colors/font_color_hover = Color( 1, 1, 1, 1 )
custom_colors/font_color_pressed = Color( 1, 1, 1, 1 )
custom_fonts/font = SubResource( 9 )
custom_styles/hover = SubResource( 10 )
custom_styles/pressed = SubResource( 11 )
custom_styles/focus = SubResource( 12 )
custom_styles/disabled = SubResource( 13 )
custom_styles/normal = SubResource( 14 )
enabled_focus_mode = 0
text = " 1 "
[node name="stars" parent="." instance=ExtResource( 7 )]
margin_left = 0.0
margin_top = 163.0
margin_right = 244.0
margin_bottom = 227.0
alignment = 1
[connection signal="pressed" from="btnLevel" to="." method="_on_btnLevel_pressed"]