-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtutorial.tscn
More file actions
74 lines (64 loc) · 2.75 KB
/
Copy pathtutorial.tscn
File metadata and controls
74 lines (64 loc) · 2.75 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
[gd_scene load_steps=4 format=3 uid="uid://cm24wjbhtkuo3"]
[ext_resource type="Texture2D" uid="uid://c42y2ty5wmoal" path="res://Assets/Images/BackgroundCardSelector.png" id="1_7n6eb"]
[ext_resource type="Script" uid="uid://dshcib7bbt0yt" path="res://tutorial.gd" id="1_ehuit"]
[ext_resource type="Script" uid="uid://cl77a8obwg8du" path="res://back_button.gd" id="2_yb1ct"]
[node name="Tutorial" type="Control"]
layout_mode = 3
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
script = ExtResource("1_ehuit")
[node name="BackgroundCardSelector" type="Sprite2D" parent="."]
position = Vector2(964.068, 581.5)
scale = Vector2(1.15075, 1.28981)
texture = ExtResource("1_7n6eb")
[node name="PanelContainer" type="PanelContainer" parent="."]
layout_mode = 1
anchors_preset = 13
anchor_left = 0.5
anchor_right = 0.5
anchor_bottom = 1.0
offset_left = -510.0
offset_top = 30.0
offset_right = 510.0
offset_bottom = -178.0
grow_horizontal = 2
grow_vertical = 2
[node name="ScrollContainer" type="ScrollContainer" parent="PanelContainer"]
layout_mode = 2
[node name="VBoxContainer" type="VBoxContainer" parent="PanelContainer/ScrollContainer"]
custom_minimum_size = Vector2(1000, 0)
layout_mode = 2
[node name="Label" type="Label" parent="PanelContainer/ScrollContainer/VBoxContainer"]
custom_minimum_size = Vector2(400, 0)
layout_mode = 2
theme_override_font_sizes/font_size = 30
text = "Welcome to Food Fight! In Food Fight the player must compete againts another player or AI in a Food Fight for a set number of rounds. Each round, the loser to gets to pick a card that provides them a power up. The game ends once one player was won the selected number of rounds"
horizontal_alignment = 1
autowrap_mode = 3
[node name="Label2" type="Label" parent="PanelContainer/ScrollContainer/VBoxContainer"]
custom_minimum_size = Vector2(400, 0)
layout_mode = 2
theme_override_font_sizes/font_size = 30
text = "The controls are also very simple. For two player, the red player uses WASD to move, Q and E to aim, and F to shoot. The blue player uses the arrow keys to move, , and . to aim, and / to shoot. It's recommended to turn on auto aim for 2 player for improved quality of life. For single player, the controls are the same as the red player but the mouse is used for aiming."
horizontal_alignment = 1
autowrap_mode = 3
[node name="Button" type="Button" parent="."]
layout_mode = 1
anchors_preset = 7
anchor_left = 0.5
anchor_top = 1.0
anchor_right = 0.5
anchor_bottom = 1.0
offset_left = -282.0
offset_top = -157.0
offset_right = 283.0
offset_bottom = -66.0
grow_horizontal = 2
grow_vertical = 0
theme_override_font_sizes/font_size = 60
text = "Back to Main Menu"
script = ExtResource("2_yb1ct")
[connection signal="pressed" from="Button" to="Button" method="_on_pressed"]