-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStart.tscn
More file actions
88 lines (75 loc) · 2.09 KB
/
Copy pathStart.tscn
File metadata and controls
88 lines (75 loc) · 2.09 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
[gd_scene load_steps=6 format=2]
[ext_resource path="res://font/NotoSerifCJKjp-Medium.otf" type="DynamicFontData" id=1]
[ext_resource path="res://script/start.gd" type="Script" id=2]
[ext_resource path="res://EnterInfo.tscn" type="PackedScene" id=3]
[sub_resource type="DynamicFont" id=1]
size = 64
font_data = ExtResource( 1 )
[sub_resource type="DynamicFont" id=2]
size = 27
font_data = ExtResource( 1 )
[node name="Control" type="Control"]
anchor_right = 1.0
anchor_bottom = 1.0
script = ExtResource( 2 )
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Label" type="Label" parent="."]
margin_right = 1024.0
margin_bottom = 189.0
custom_fonts/font = SubResource( 1 )
custom_colors/font_color = Color( 1, 0, 0, 1 )
text = "Simple Mahjong Timer
By XGN from HHS 2021"
align = 1
valign = 1
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Button" type="Button" parent="."]
margin_left = 237.993
margin_top = 367.0
margin_right = 802.993
margin_bottom = 555.0
custom_fonts/font = SubResource( 2 )
text = "Start Round!!"
__meta__ = {
"_edit_use_anchors_": false
}
[node name="p1" parent="." instance=ExtResource( 3 )]
margin_top = 189.0
margin_bottom = -387.0
text = "Player Names (Comma-Separated)"
initVal = "A,B,C,D"
[node name="p2" parent="." instance=ExtResource( 3 )]
margin_top = 213.0
margin_bottom = -363.0
text = "Initial Score"
initVal = "25000"
[node name="p3" parent="." instance=ExtResource( 3 )]
margin_top = 237.0
margin_bottom = -339.0
text = "Think Time"
initVal = "5"
[node name="p4" parent="." instance=ExtResource( 3 )]
margin_top = 261.0
margin_bottom = -315.0
text = "Extra Think Time"
initVal = "20"
[node name="p5" parent="." instance=ExtResource( 3 )]
margin_top = 285.0
margin_bottom = -291.0
text = "Time For Chii,Pon,Kan"
initVal = "8"
[node name="p6" parent="." instance=ExtResource( 3 )]
margin_top = 309.0
margin_bottom = -267.0
text = "Riichi Cost"
initVal = "1000"
[node name="p7" parent="." instance=ExtResource( 3 )]
margin_top = 333.0
margin_bottom = -243.0
text = "Double Riichi Cost"
initVal = "2000"
[connection signal="pressed" from="Button" to="." method="_on_Button_pressed"]