1
0
Fork 0
Cleanomancer/Scenes/MainMenu.tscn

65 lines
2.0 KiB
Plaintext

[gd_scene load_steps=11 format=2]
[ext_resource path="res://Textures/title-screen.png" type="Texture" id=1]
[ext_resource path="res://Textures/Buttons/exit.png" type="Texture" id=2]
[ext_resource path="res://Textures/Buttons/credits.png" type="Texture" id=3]
[ext_resource path="res://Textures/Buttons/credits_pressed.png" type="Texture" id=4]
[ext_resource path="res://Textures/Buttons/exit_pressed.png" type="Texture" id=5]
[ext_resource path="res://Textures/Buttons/start.png" type="Texture" id=6]
[ext_resource path="res://Script/MainMenu.gd" type="Script" id=7]
[ext_resource path="res://Textures/Buttons/start_pressed.png" type="Texture" id=8]
[ext_resource path="res://Music/menu.mp3" type="AudioStream" id=9]
[ext_resource path="res://Scenes/Credits.tscn" type="PackedScene" id=10]
[node name="MainMenu" type="Node2D"]
script = ExtResource( 7 )
[node name="Main" type="Node2D" parent="."]
[node name="Background" type="Sprite" parent="Main"]
position = Vector2( 960, 538.413 )
texture = ExtResource( 1 )
[node name="Start" type="TextureButton" parent="Main"]
margin_left = 1400.0
margin_top = 540.0
margin_right = 1750.0
margin_bottom = 700.0
texture_normal = ExtResource( 6 )
texture_pressed = ExtResource( 8 )
texture_hover = ExtResource( 8 )
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Credits" type="TextureButton" parent="Main"]
margin_left = 1400.0
margin_top = 710.0
margin_right = 1750.0
margin_bottom = 870.0
texture_normal = ExtResource( 3 )
texture_pressed = ExtResource( 4 )
texture_hover = ExtResource( 4 )
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Exit" type="TextureButton" parent="Main"]
margin_left = 1400.0
margin_top = 880.0
margin_right = 1750.0
margin_bottom = 1040.0
texture_normal = ExtResource( 2 )
texture_pressed = ExtResource( 5 )
texture_hover = ExtResource( 5 )
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Sound" type="AudioStreamPlayer" parent="."]
stream = ExtResource( 9 )
autoplay = true
[node name="Credits" parent="." instance=ExtResource( 10 )]
visible = false