diff options
author | Hop311 <Hop3114@gmail.com> | 2023-03-22 17:56:24 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-22 17:56:24 +0100 |
commit | eb87e2af53bd693e04739aaee84fde408e72f3a9 (patch) | |
tree | df2d5211157f9222c3c7fc21888bea08411c8c9b /game/src/GameSession/GameSession.tscn | |
parent | 540dddf46e80a91c77e465cbf6fdb81dd9977057 (diff) |
Basic Game Session skeleton (#67)
* Fixed grab_focus error on not is_inside_tree
* Moved SampleGame to GameSession/GameSession
* Basic GameSession and GameSessionMenu/Escape Menu
* Map Control Panel skeleton
* Added requirement comments
* Removed unnecessary CenterContainer
Diffstat (limited to 'game/src/GameSession/GameSession.tscn')
-rw-r--r-- | game/src/GameSession/GameSession.tscn | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/game/src/GameSession/GameSession.tscn b/game/src/GameSession/GameSession.tscn new file mode 100644 index 0000000..f984daf --- /dev/null +++ b/game/src/GameSession/GameSession.tscn @@ -0,0 +1,40 @@ +[gd_scene load_steps=4 format=3 uid="uid://bgnupcshe1m7r"] + +[ext_resource type="Script" path="res://src/GameSession/GameSession.gd" id="1_eklvp"] +[ext_resource type="PackedScene" uid="uid://g524p8lr574w" path="res://src/GameSession/MapControlPanel.tscn" id="3_afh6d"] +[ext_resource type="PackedScene" uid="uid://dvdynl6eir40o" path="res://src/GameSession/GameSessionMenu.tscn" id="3_bvmqh"] + +[node name="GameSession" type="Control" node_paths=PackedStringArray("_game_session_menu")] +editor_description = "SS-102" +layout_mode = 3 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +script = ExtResource("1_eklvp") +_game_session_menu = NodePath("GameSessionMenu") + +[node name="GameSessionMenu" parent="." instance=ExtResource("3_bvmqh")] +visible = false +layout_mode = 1 +anchors_preset = 8 +anchor_left = 0.5 +anchor_top = 0.5 +anchor_right = 0.5 +anchor_bottom = 0.5 +grow_horizontal = 2 +grow_vertical = 2 + +[node name="MapControlPanel" parent="." instance=ExtResource("3_afh6d")] +layout_mode = 1 +anchors_preset = 3 +anchor_left = 1.0 +anchor_top = 1.0 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 0 +grow_vertical = 0 + +[connection signal="close_button_pressed" from="GameSessionMenu" to="." method="_on_game_session_menu_close_button_pressed"] +[connection signal="game_session_menu_button_pressed" from="MapControlPanel" to="." method="_on_game_session_menu_button_pressed"] |