tank-blaster/Levels/Main.tscn

97 lines
2.9 KiB
Text
Raw Normal View History

2022-03-21 21:01:14 -06:00
[gd_scene load_steps=12 format=2]
2022-03-17 15:13:55 -06:00
[ext_resource path="res://Levels/Menu.gd" type="Script" id=1]
2022-03-18 19:09:08 -06:00
[ext_resource path="res://fonts/Extrude.ttf" type="DynamicFontData" id=2]
[ext_resource path="res://2D Art/Software Splashes/Godot.png" type="Texture" id=3]
[ext_resource path="res://2D Art/Software Splashes/Blender.png" type="Texture" id=4]
[ext_resource path="res://2D Art/Software Splashes/Maya.png" type="Texture" id=5]
[ext_resource path="res://2D Art/Software Splashes/skillsUSA.png" type="Texture" id=6]
2022-03-21 21:01:14 -06:00
[ext_resource path="res://fonts/Born2bSportyV2.ttf" type="DynamicFontData" id=7]
[sub_resource type="DynamicFont" id=2]
font_data = ExtResource( 7 )
[sub_resource type="DynamicFont" id=3]
font_data = ExtResource( 7 )
[sub_resource type="DynamicFont" id=4]
font_data = ExtResource( 7 )
2022-03-18 19:09:08 -06:00
[sub_resource type="DynamicFont" id=1]
size = 200
font_data = ExtResource( 2 )
2022-03-17 15:13:55 -06:00
[node name="Menu" type="Control"]
anchor_right = 1.0
anchor_bottom = 1.0
script = ExtResource( 1 )
[node name="VBoxContainer" type="VBoxContainer" parent="."]
anchor_left = 0.5
anchor_top = 0.5
anchor_right = 0.5
anchor_bottom = 0.5
margin_left = -31.0
margin_top = -34.0
margin_right = 32.0
margin_bottom = 34.0
rect_scale = Vector2( 2, 2 )
[node name="StartButton" type="Button" parent="VBoxContainer"]
margin_right = 63.0
2022-03-21 21:01:14 -06:00
margin_bottom = 22.0
custom_fonts/font = SubResource( 2 )
2022-03-17 15:13:55 -06:00
text = "Play"
[node name="OptionsButton" type="Button" parent="VBoxContainer"]
2022-03-21 21:01:14 -06:00
margin_top = 26.0
2022-03-17 15:13:55 -06:00
margin_right = 63.0
2022-03-21 21:01:14 -06:00
margin_bottom = 48.0
custom_fonts/font = SubResource( 3 )
2022-03-17 15:13:55 -06:00
text = "Options"
[node name="ExitButton" type="Button" parent="VBoxContainer"]
2022-03-21 21:01:14 -06:00
margin_top = 52.0
2022-03-17 15:13:55 -06:00
margin_right = 63.0
2022-03-21 21:01:14 -06:00
margin_bottom = 74.0
custom_fonts/font = SubResource( 4 )
2022-03-17 15:13:55 -06:00
text = "Quit"
2022-03-18 19:09:08 -06:00
[node name="VBoxContainer2" type="VBoxContainer" parent="."]
anchor_left = 0.5
anchor_right = 0.5
margin_left = -671.0
margin_top = 150.0
margin_right = 671.0
margin_bottom = 350.0
[node name="Label" type="Label" parent="VBoxContainer2"]
margin_right = 1342.0
margin_bottom = 200.0
custom_fonts/font = SubResource( 1 )
text = "Tank Blaster"
[node name="Godot" type="Sprite" parent="."]
position = Vector2( 978, 948 )
scale = Vector2( 0.139387, 0.139387 )
texture = ExtResource( 3 )
[node name="Blender" type="Sprite" parent="."]
position = Vector2( 345, 953 )
scale = Vector2( 0.186171, 0.186171 )
texture = ExtResource( 4 )
[node name="Maya" type="Sprite" parent="."]
position = Vector2( 1621, 959 )
scale = Vector2( 0.230098, 0.230098 )
texture = ExtResource( 5 )
[node name="SkillsUsa" type="Sprite" parent="."]
position = Vector2( 1497, 559 )
scale = Vector2( 0.36747, 0.36747 )
texture = ExtResource( 6 )
2022-03-17 15:13:55 -06:00
[connection signal="pressed" from="VBoxContainer/StartButton" to="." method="_on_StartButton_pressed"]
[connection signal="pressed" from="VBoxContainer/OptionsButton" to="." method="_on_OptionsButton_pressed"]
[connection signal="pressed" from="VBoxContainer/ExitButton" to="." method="_on_ExitButton_pressed"]