-
Notifications
You must be signed in to change notification settings - Fork 4
/
main.tscn
42 lines (35 loc) · 1.11 KB
/
main.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
[gd_scene load_steps=4 format=2]
[ext_resource path="res://button_pressed.tres" type="Material" id=1]
[ext_resource path="res://ControlAnimator.tscn" type="PackedScene" id=2]
[ext_resource path="res://icon.png" type="Texture" id=3]
[node name="Node" type="Node"]
[node name="VBoxContainer" type="VBoxContainer" parent="."]
margin_top = 4.0
margin_right = 250.0
margin_bottom = 272.0
__meta__ = {
"_edit_use_anchors_": false
}
[node name="button" type="Button" parent="VBoxContainer"]
material = ExtResource( 1 )
margin_right = 250.0
margin_bottom = 60.0
rect_min_size = Vector2( 120, 60 )
text = "CLICK ME"
__meta__ = {
"_edit_use_anchors_": false
}
[node name="button_animation" parent="VBoxContainer/button" instance=ExtResource( 2 )]
[node name="TextureRect" type="TextureRect" parent="VBoxContainer"]
margin_top = 64.0
margin_right = 240.0
margin_bottom = 304.0
rect_min_size = Vector2( 240, 240 )
size_flags_horizontal = 2
size_flags_vertical = 2
texture = ExtResource( 3 )
expand = true
__meta__ = {
"_edit_use_anchors_": false
}
[node name="button_animation" parent="VBoxContainer/TextureRect" instance=ExtResource( 2 )]