taqin/src/DepthButton.tscn

48 lines
1.4 KiB
Plaintext

[gd_scene load_steps=5 format=2]
[ext_resource path="res://assets/taqin_theme.tres" type="Theme" id=1]
[ext_resource path="res://src/DepthButton.gd" type="Script" id=2]
[ext_resource path="res://assets/sounds/button_down.wav" type="AudioStream" id=3]
[ext_resource path="res://assets/sounds/button_up.wav" type="AudioStream" id=4]
[node name="DepthButton" type="Control"]
anchor_right = 1.0
anchor_bottom = 1.0
margin_right = -732.0
margin_bottom = -452.0
rect_min_size = Vector2( 200, 80 )
theme = ExtResource( 1 )
script = ExtResource( 2 )
__meta__ = {
"_edit_use_anchors_": false
}
text = "Press Me"
[node name="Background" type="Panel" parent="."]
anchor_top = 0.5
anchor_right = 1.0
anchor_bottom = 1.0
mouse_filter = 2
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Button" type="Button" parent="."]
anchor_right = 1.0
anchor_bottom = 1.0
margin_bottom = -10.0
text = "Press Me"
__meta__ = {
"_edit_use_anchors_": false
}
[node name="AudioDown" type="AudioStreamPlayer" parent="."]
stream = ExtResource( 3 )
[node name="AudioUp" type="AudioStreamPlayer" parent="."]
stream = ExtResource( 4 )
[connection signal="button_down" from="Button" to="." method="_on_Button_button_down"]
[connection signal="button_up" from="Button" to="." method="_on_Button_button_up"]
[connection signal="pressed" from="Button" to="." method="_on_Button_pressed"]
[connection signal="toggled" from="Button" to="." method="_on_Button_toggled"]