forked from GDQuest/learn-gdscript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBigGreenButton.tscn
30 lines (28 loc) · 1.3 KB
/
BigGreenButton.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
[gd_scene load_steps=7 format=2]
[ext_resource path="res://ui/theme/button_outline_large_hover.tres" type="StyleBox" id=1]
[ext_resource path="res://ui/theme/button_outline_large_pressed.tres" type="StyleBox" id=2]
[ext_resource path="res://ui/theme/button_outline_large_focus.tres" type="StyleBox" id=3]
[ext_resource path="res://ui/theme/fonts/font_button_big_green.tres" type="DynamicFont" id=4]
[ext_resource path="res://ui/components/BigGreenButton.gd" type="Script" id=5]
[ext_resource path="res://ui/theme/button_outline_large_accented.tres" type="StyleBox" id=6]
[node name="BigGreenButton" type="Button"]
margin_top = 896.0
margin_right = 356.0
margin_bottom = 976.0
rect_min_size = Vector2( 0, 80 )
mouse_default_cursor_shape = 2
custom_colors/font_color_focus = Color( 0.960784, 0.980392, 0.980392, 1 )
custom_colors/font_color = Color( 0.239216, 1, 0.431373, 1 )
custom_colors/font_color_hover = Color( 0.74902, 0.741176, 0.85098, 1 )
custom_colors/font_color_pressed = Color( 0.290196, 0.294118, 0.388235, 1 )
custom_fonts/font = ExtResource( 4 )
custom_styles/hover = ExtResource( 1 )
custom_styles/pressed = ExtResource( 2 )
custom_styles/focus = ExtResource( 3 )
custom_styles/normal = ExtResource( 6 )
text = "Button"
script = ExtResource( 5 )
__meta__ = {
"_edit_use_anchors_": false,
"_editor_description_": ""
}