mirror of
https://github.com/Relintai/broken_seals.git
synced 2024-11-13 20:47:19 +01:00
Same treatment for the unitframes.
This commit is contained in:
parent
dcc0d1d83d
commit
6bcb37b339
@ -1,18 +1,15 @@
|
||||
[gd_scene load_steps=24 format=2]
|
||||
[gd_scene load_steps=21 format=2]
|
||||
|
||||
[ext_resource path="res://player/GUI.gd" type="Script" id=1]
|
||||
[ext_resource path="res://ui/ingame_menu/IngameMenu.tscn" type="PackedScene" id=2]
|
||||
[ext_resource path="res://player/Unitframes.gd" type="Script" id=3]
|
||||
[ext_resource path="res://ui/theme/menu_icon.tres" type="Texture" id=6]
|
||||
[ext_resource path="res://ui/buttons/Buttons.gd" type="Script" id=9]
|
||||
[ext_resource path="res://ui/theme/ui_theme.tres" type="Theme" id=10]
|
||||
[ext_resource path="res://ui/windows/TalentWindow.tscn" type="PackedScene" id=11]
|
||||
[ext_resource path="res://ui/unitframes/TargetUnitframe.tscn" type="PackedScene" id=12]
|
||||
[ext_resource path="res://ui/bags/Bag.tscn" type="PackedScene" id=15]
|
||||
[ext_resource path="res://ui/windows/SpellBookWindow.tscn" type="PackedScene" id=17]
|
||||
[ext_resource path="res://ui/loot_window/LootWindow.tscn" type="PackedScene" id=19]
|
||||
[ext_resource path="res://ui/windows/CraftingWindow.tscn" type="PackedScene" id=20]
|
||||
[ext_resource path="res://ui/unitframes/UnitframeBase.tscn" type="PackedScene" id=21]
|
||||
[ext_resource path="res://ui/theme/talent_icon.tres" type="Texture" id=22]
|
||||
[ext_resource path="res://ui/theme/spellbook_icon.tres" type="Texture" id=23]
|
||||
[ext_resource path="res://ui/theme/bag_icon.tres" type="Texture" id=24]
|
||||
@ -256,25 +253,6 @@ margin_top = 69.8467
|
||||
margin_right = 524.418
|
||||
margin_bottom = 502.847
|
||||
|
||||
[node name="Unitframes" type="Control" parent="GUI"]
|
||||
anchor_right = 1.0
|
||||
anchor_bottom = 1.0
|
||||
margin_left = 1.0
|
||||
margin_right = 1.0
|
||||
mouse_filter = 2
|
||||
script = ExtResource( 3 )
|
||||
__meta__ = {
|
||||
"_edit_lock_": true
|
||||
}
|
||||
player_unit_frame_path = NodePath("PlayerUnitFrame")
|
||||
target_unit_frame_path = NodePath("TargetUnitframe")
|
||||
|
||||
[node name="PlayerUnitFrame" parent="GUI/Unitframes" instance=ExtResource( 21 )]
|
||||
margin_right = 151.0
|
||||
|
||||
[node name="TargetUnitframe" parent="GUI/Unitframes" instance=ExtResource( 12 )]
|
||||
visible = false
|
||||
|
||||
[node name="IngameMenu" parent="GUI" instance=ExtResource( 2 )]
|
||||
visible = false
|
||||
[connection signal="toggled" from="GUI/Buttons/SpellBookButton" to="GUI/Windows/SpellBookWindow" method="_on_SpellBookButton_toggled"]
|
||||
|
24
game/ui/unitframes/Unitframes.tscn
Normal file
24
game/ui/unitframes/Unitframes.tscn
Normal file
@ -0,0 +1,24 @@
|
||||
[gd_scene load_steps=4 format=2]
|
||||
|
||||
[ext_resource path="res://player/Unitframes.gd" type="Script" id=2]
|
||||
[ext_resource path="res://ui/unitframes/UnitframeBase.tscn" type="PackedScene" id=6]
|
||||
[ext_resource path="res://ui/unitframes/TargetUnitframe.tscn" type="PackedScene" id=7]
|
||||
|
||||
[node name="Unitframes" type="Control"]
|
||||
anchor_right = 1.0
|
||||
anchor_bottom = 1.0
|
||||
margin_left = 1.0
|
||||
margin_right = 1.0
|
||||
mouse_filter = 2
|
||||
script = ExtResource( 2 )
|
||||
__meta__ = {
|
||||
"_edit_lock_": true
|
||||
}
|
||||
player_unit_frame_path = NodePath("PlayerUnitFrame")
|
||||
target_unit_frame_path = NodePath("TargetUnitframe")
|
||||
|
||||
[node name="PlayerUnitFrame" parent="." instance=ExtResource( 6 )]
|
||||
margin_right = 151.0
|
||||
|
||||
[node name="TargetUnitframe" parent="." instance=ExtResource( 7 )]
|
||||
visible = false
|
10
game/ui/unitframes/game_module.tres
Normal file
10
game/ui/unitframes/game_module.tres
Normal file
@ -0,0 +1,10 @@
|
||||
[gd_resource type="Resource" load_steps=3 format=2]
|
||||
|
||||
[ext_resource path="res://scripts/game_modules/ui_gui_child_module.gd" type="Script" id=1]
|
||||
[ext_resource path="res://ui/unitframes/Unitframes.tscn" type="PackedScene" id=2]
|
||||
|
||||
[resource]
|
||||
script = ExtResource( 1 )
|
||||
enabled = true
|
||||
scene = ExtResource( 2 )
|
||||
hide = false
|
Loading…
Reference in New Issue
Block a user