-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathStack.tscn
52 lines (44 loc) · 1.54 KB
/
Stack.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
43
44
45
46
47
48
49
50
51
52
[gd_scene load_steps=7 format=2]
[ext_resource path="res://Stack.gd" type="Script" id=1]
[ext_resource path="res://assets/fonts/Xolonium-Regular.ttf" type="DynamicFontData" id=2]
[ext_resource path="res://Clock.tscn" type="PackedScene" id=3]
[ext_resource path="res://assets/dump_block.png" type="Texture" id=4]
[ext_resource path="res://assets/stackbot.png" type="Texture" id=5]
[sub_resource type="DynamicFont" id=1]
size = 64
font_data = ExtResource( 2 )
[node name="Stack" type="Node2D"]
script = ExtResource( 1 )
[node name="Button" type="Button" parent="."]
margin_left = -476.624
margin_top = -318.471
margin_right = -195.624
margin_bottom = -226.471
custom_fonts/font = SubResource( 1 )
text = "Process"
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Button2" type="Button" parent="."]
modulate = Color( 0, 0, 1, 1 )
margin_left = -623.009
margin_top = -208.272
margin_right = -190.009
margin_bottom = -116.272
custom_fonts/font = SubResource( 1 )
text = "Toggle Loop"
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Clock" parent="." instance=ExtResource( 3 )]
position = Vector2( -317.03, -403.469 )
[node name="Dump" type="Sprite" parent="."]
position = Vector2( -276.965, 13.646 )
scale = Vector2( 1.5, 1.5 )
texture = ExtResource( 4 )
[node name="Sprite" type="Sprite" parent="."]
position = Vector2( 0.23745, 57.1916 )
scale = Vector2( 1.87626, 1.87626 )
texture = ExtResource( 5 )
[connection signal="pressed" from="Button" to="." method="_on_Button_pressed"]
[connection signal="pressed" from="Button2" to="." method="_on_Button2_pressed"]