Initial commit
This commit is contained in:
101
scenes/misc/Stats.tscn
Normal file
101
scenes/misc/Stats.tscn
Normal file
@@ -0,0 +1,101 @@
|
||||
[gd_scene load_steps=5 format=2]
|
||||
|
||||
[ext_resource path="res://scenes/misc/Stats.gd" type="Script" id=1]
|
||||
[ext_resource path="res://fonts/dialog.tres" type="FontFile" id=2]
|
||||
[ext_resource path="res://fonts/stats.tres" type="FontFile" id=3]
|
||||
[ext_resource path="res://scenes/misc/stats.stylebox" type="StyleBox" id=4]
|
||||
|
||||
[node name="Stats" type="PanelContainer"]
|
||||
process_mode = 3
|
||||
visible = false
|
||||
anchor_right = 1.0
|
||||
anchor_bottom = 1.0
|
||||
focus_neighbor_top = NodePath("VBoxContainer/Exit")
|
||||
focus_neighbor_bottom = NodePath("VBoxContainer/Exit")
|
||||
focus_mode = 2
|
||||
theme_override_styles/panel = ExtResource( 4 )
|
||||
script = ExtResource( 1 )
|
||||
__meta__ = {
|
||||
"_edit_use_anchors_": false
|
||||
}
|
||||
|
||||
[node name="VBoxContainer" type="VBoxContainer" parent="."]
|
||||
offset_left = 20.0
|
||||
offset_top = 20.0
|
||||
offset_right = 1004.0
|
||||
offset_bottom = 580.0
|
||||
size_flags_horizontal = 3
|
||||
size_flags_vertical = 3
|
||||
|
||||
[node name="Paused" type="Label" parent="VBoxContainer"]
|
||||
offset_right = 984.0
|
||||
offset_bottom = 43.0
|
||||
theme_override_fonts/font = ExtResource( 2 )
|
||||
text = "Paused"
|
||||
align = 1
|
||||
|
||||
[node name="HBoxContainer" type="HBoxContainer" parent="VBoxContainer"]
|
||||
offset_top = 47.0
|
||||
offset_right = 984.0
|
||||
offset_bottom = 507.0
|
||||
size_flags_horizontal = 3
|
||||
size_flags_vertical = 3
|
||||
alignment = 1
|
||||
|
||||
[node name="Quests" type="VBoxContainer" parent="VBoxContainer/HBoxContainer"]
|
||||
offset_right = 490.0
|
||||
offset_bottom = 460.0
|
||||
size_flags_horizontal = 3
|
||||
size_flags_vertical = 3
|
||||
|
||||
[node name="Title" type="Label" parent="VBoxContainer/HBoxContainer/Quests"]
|
||||
offset_right = 490.0
|
||||
offset_bottom = 43.0
|
||||
size_flags_horizontal = 3
|
||||
theme_override_fonts/font = ExtResource( 2 )
|
||||
text = "Quests"
|
||||
align = 1
|
||||
|
||||
[node name="Details" type="Label" parent="VBoxContainer/HBoxContainer/Quests"]
|
||||
offset_top = 47.0
|
||||
offset_right = 490.0
|
||||
offset_bottom = 460.0
|
||||
size_flags_horizontal = 3
|
||||
size_flags_vertical = 3
|
||||
theme_override_fonts/font = ExtResource( 3 )
|
||||
text = "Quest 1
|
||||
Quest 2
|
||||
Quest 3
|
||||
Quest 4"
|
||||
|
||||
[node name="Inventory" type="VBoxContainer" parent="VBoxContainer/HBoxContainer"]
|
||||
offset_left = 494.0
|
||||
offset_right = 984.0
|
||||
offset_bottom = 460.0
|
||||
size_flags_horizontal = 3
|
||||
|
||||
[node name="Title" type="Label" parent="VBoxContainer/HBoxContainer/Inventory"]
|
||||
offset_right = 490.0
|
||||
offset_bottom = 43.0
|
||||
theme_override_fonts/font = ExtResource( 2 )
|
||||
text = "Inventory"
|
||||
align = 1
|
||||
|
||||
[node name="Details" type="Label" parent="VBoxContainer/HBoxContainer/Inventory"]
|
||||
offset_top = 47.0
|
||||
offset_right = 490.0
|
||||
offset_bottom = 460.0
|
||||
size_flags_horizontal = 3
|
||||
size_flags_vertical = 3
|
||||
theme_override_fonts/font = ExtResource( 3 )
|
||||
text = "Item 1
|
||||
"
|
||||
|
||||
[node name="Exit" type="Button" parent="VBoxContainer"]
|
||||
offset_top = 511.0
|
||||
offset_right = 984.0
|
||||
offset_bottom = 560.0
|
||||
theme_override_fonts/font = ExtResource( 2 )
|
||||
text = "EXIT"
|
||||
flat = true
|
||||
[connection signal="pressed" from="VBoxContainer/Exit" to="." method="_on_Exit_pressed"]
|
||||
Reference in New Issue
Block a user