oh-my-git/scenes/cards.tscn

53 lines
1.3 KiB
Text
Raw Normal View History

[gd_scene load_steps=4 format=2]
2020-10-14 00:57:30 +02:00
2023-09-06 16:04:23 +02:00
[ext_resource path="res://fonts/default.tres" type="FontFile" id=1]
[ext_resource path="res://fonts/big.tres" type="FontFile" id=2]
2020-10-27 18:21:57 +01:00
[ext_resource path="res://scenes/cards.gd" type="Script" id=3]
2020-10-14 14:48:38 +02:00
[node name="Cards" type="Control"]
anchor_right = 1.0
anchor_bottom = 1.0
mouse_filter = 2
2020-10-14 00:57:30 +02:00
script = ExtResource( 3 )
2020-10-14 14:48:38 +02:00
__meta__ = {
"_edit_use_anchors_": false
}
2020-10-14 00:57:30 +02:00
2020-10-29 20:02:43 +01:00
[node name="ColorRect" type="ColorRect" parent="."]
anchor_right = 1.0
anchor_bottom = 1.0
mouse_filter = 2
color = Color( 0.105882, 0.137255, 0.211765, 1 )
__meta__ = {
"_edit_use_anchors_": false
}
2020-10-14 00:57:30 +02:00
[node name="Button" type="Button" parent="."]
2020-10-27 18:21:57 +01:00
visible = false
2020-10-14 14:48:38 +02:00
anchor_left = 1.0
anchor_right = 1.0
2023-09-06 16:04:23 +02:00
offset_left = -172.0
offset_top = 16.0
offset_right = -16.0
offset_bottom = 47.0
theme_override_fonts/font = ExtResource( 1 )
2020-10-14 00:57:30 +02:00
text = "Draw new cards"
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Energy" type="Label" parent="."]
2020-10-15 16:11:02 +02:00
visible = false
modulate = Color( 0.431373, 0.792157, 0.423529, 1 )
2023-09-06 16:04:23 +02:00
offset_left = 28.2219
offset_top = 16.6766
offset_right = 68.2219
offset_bottom = 65.6766
scale = Vector2( 2, 2 )
theme_override_fonts/font = ExtResource( 2 )
text = "3"
__meta__ = {
"_edit_use_anchors_": false
}
2020-10-14 00:57:30 +02:00
[connection signal="pressed" from="Button" to="." method="redraw_all_cards"]