-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathProgressButton.tscn
33 lines (29 loc) · 1000 Bytes
/
ProgressButton.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
[gd_scene load_steps=6 format=2]
[ext_resource path="res://assets/icons/emoji-happy.svg" type="Texture" id=1]
[ext_resource path="res://assets/icons/emoji-happy-active.svg" type="Texture" id=2]
[ext_resource path="res://expressions_buttongroup.tres" type="ButtonGroup" id=3]
[ext_resource path="res://RadialProgress.tscn" type="PackedScene" id=4]
[ext_resource path="res://ProgressButton.gd" type="Script" id=5]
[node name="ProgressButton" type="Control"]
margin_right = 50.0
margin_bottom = 50.0
rect_min_size = Vector2( 50, 50 )
script = ExtResource( 5 )
__meta__ = {
"_edit_use_anchors_": false
}
[node name="RadialProgress" parent="." instance=ExtResource( 4 )]
visible = false
[node name="button" type="TextureButton" parent="."]
margin_right = 50.0
margin_bottom = 80.0
toggle_mode = true
group = ExtResource( 3 )
texture_normal = ExtResource( 1 )
texture_pressed = ExtResource( 2 )
texture_hover = ExtResource( 2 )
expand = true
stretch_mode = 5
__meta__ = {
"_edit_use_anchors_": false
}