21 lines
771 B
Plaintext
21 lines
771 B
Plaintext
[gd_scene load_steps=5 format=2]
|
|
|
|
[ext_resource path="res://user_interface/topic_panel/add_button_normal.png" type="Texture" id=1]
|
|
[ext_resource path="res://user_interface/topic_panel/add_button_hover.png" type="Texture" id=2]
|
|
[ext_resource path="res://user_interface/topic_panel/add_button_pressed.png" type="Texture" id=3]
|
|
[ext_resource path="res://user_interface/topic_panel/add_button.gd" type="Script" id=4]
|
|
|
|
[node name="AddButton" type="TextureButton"]
|
|
rect_min_size = Vector2( 0, 56 )
|
|
size_flags_horizontal = 3
|
|
texture_normal = ExtResource( 1 )
|
|
texture_pressed = ExtResource( 3 )
|
|
texture_hover = ExtResource( 2 )
|
|
expand = true
|
|
script = ExtResource( 4 )
|
|
__meta__ = {
|
|
"_edit_use_anchors_": false
|
|
}
|
|
|
|
[connection signal="pressed" from="." to="." method="_on_pressed"]
|