ygdra/screen/exploration_screen.tscn

96 lines
2.6 KiB
Plaintext

[gd_scene load_steps=11 format=2]
[ext_resource path="res://screen/exploration_screen.gd" type="Script" id=1]
[ext_resource path="res://entity/player.tscn" type="PackedScene" id=2]
[ext_resource path="res://entity/ground.tscn" type="PackedScene" id=3]
[ext_resource path="res://LibertinusSans-Regular.otf" type="DynamicFontData" id=4]
[ext_resource path="res://entity/exit.tscn" type="PackedScene" id=5]
[ext_resource path="res://entity/entrance.tscn" type="PackedScene" id=6]
[ext_resource path="res://hud/button-up.svg" type="Texture" id=7]
[ext_resource path="res://hud/button-down.svg" type="Texture" id=8]
[sub_resource type="DynamicFont" id=1]
size = 24
font_data = ExtResource( 4 )
[sub_resource type="DynamicFont" id=2]
size = 24
font_data = ExtResource( 4 )
[node name="ExplorationScreen" type="Node"]
script = ExtResource( 1 )
[node name="Root3D" type="Spatial" parent="."]
[node name="Player" parent="Root3D" instance=ExtResource( 2 )]
[node name="Ground" parent="Root3D" instance=ExtResource( 3 )]
[node name="Entrance" parent="Root3D" instance=ExtResource( 6 )]
transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 5, 0, 5 )
[node name="Exit" parent="Root3D" instance=ExtResource( 5 )]
transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 5, 0, 3 )
[node name="Walls" type="Spatial" parent="Root3D"]
[node name="Chests" type="Spatial" parent="Root3D"]
[node name="HUD" type="Node" parent="."]
[node name="NbSteps" type="Label" parent="HUD"]
margin_left = 16.0
margin_top = 528.0
margin_right = 97.0
margin_bottom = 551.0
custom_fonts/font = SubResource( 1 )
text = "NbSteps"
__meta__ = {
"_edit_use_anchors_": false
}
[node name="NbChests" type="Label" parent="HUD"]
margin_left = 16.0
margin_top = 560.0
margin_right = 97.0
margin_bottom = 583.0
custom_fonts/font = SubResource( 2 )
text = "NbChests"
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Help" type="Node" parent="HUD"]
[node name="Button-Stop" type="Sprite" parent="HUD/Help"]
position = Vector2( 855.5, 568 )
scale = Vector2( 0.5, 0.5 )
texture = ExtResource( 7 )
[node name="Stop" type="Label" parent="HUD/Help"]
margin_left = 887.5
margin_top = 552.0
margin_right = 1009.5
margin_bottom = 580.0
custom_fonts/font = SubResource( 2 )
text = "Leave Game"
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Button-Map" type="Sprite" parent="HUD/Help"]
position = Vector2( 856, 503.5 )
scale = Vector2( 0.5, 0.5 )
texture = ExtResource( 8 )
[node name="Map" type="Label" parent="HUD/Help"]
margin_left = 888.0
margin_top = 487.5
margin_right = 1010.0
margin_bottom = 515.5
custom_fonts/font = SubResource( 2 )
text = "Show Map"
__meta__ = {
"_edit_use_anchors_": false
}