Frame-of-Mind/src/dev-util/ingest connection.tscn

61 lines
1.4 KiB
Plaintext

[gd_scene load_steps=2 format=2]
[sub_resource type="GDScript" id=1]
script/source = "extends VBoxContainer
var post_it
func _on_card_selector_pressed():
get_tree().root.get_child(0).show_labels(self)
func select(pick):
post_it = pick
$card_selector.text = post_it.get_child(1).text
func _on_card_paster_pressed():
var tmp = get_tree().root.get_child(0).paste()
if tmp != null:
select(tmp)
"
[node name="Ingest Connection" type="VBoxContainer"]
anchor_right = 1.0
anchor_bottom = 1.0
margin_top = 1.0
margin_right = -1838.0
script = SubResource( 1 )
[node name="first_weoght" type="HSlider" parent="."]
margin_right = 120.0
margin_bottom = 16.0
rect_min_size = Vector2( 120, 0 )
min_value = -1.0
max_value = 1.0
step = 0.0
tick_count = 3
[node name="second_weight" type="HSlider" parent="."]
margin_top = 20.0
margin_right = 120.0
margin_bottom = 36.0
rect_min_size = Vector2( 120, 0 )
min_value = -1.0
max_value = 1.0
step = 0.0
tick_count = 3
[node name="card_selector" type="Button" parent="."]
margin_top = 40.0
margin_right = 120.0
margin_bottom = 60.0
text = "select card"
[node name="card_paster" type="Button" parent="."]
margin_top = 64.0
margin_right = 120.0
margin_bottom = 84.0
text = "paste card"
[connection signal="pressed" from="card_selector" to="." method="_on_card_selector_pressed"]
[connection signal="pressed" from="card_paster" to="." method="_on_card_paster_pressed"]