mirror of
https://github.com/Relintai/broken_seals.git
synced 2025-01-22 02:17:18 +01:00
The target unit frame will now show the target's level.
This commit is contained in:
parent
adad0c0778
commit
1299b928b2
@ -23,6 +23,7 @@ extends VBoxContainer
|
||||
export (PackedScene) var aura_entry_scene : PackedScene
|
||||
|
||||
export (NodePath) var name_text_path : NodePath
|
||||
export (NodePath) var level_text_path : NodePath
|
||||
export (NodePath) var health_range_path : NodePath
|
||||
export (NodePath) var health_text_path : NodePath
|
||||
export (NodePath) var resource_range_path : NodePath
|
||||
@ -30,6 +31,7 @@ export (NodePath) var resource_text_path : NodePath
|
||||
export (NodePath) var aura_grid_path : NodePath
|
||||
|
||||
var _name_text : Label
|
||||
var _level_text : Label
|
||||
var _health_range : Range
|
||||
var _health_text : Label
|
||||
var _resource_range : Range
|
||||
@ -43,6 +45,7 @@ var _health : EntityResourceHealth
|
||||
# Called when the node enters the scene tree for the first time.
|
||||
func _ready() -> void:
|
||||
_name_text = get_node(name_text_path) as Label
|
||||
_level_text = get_node(level_text_path) as Label
|
||||
_health_range = get_node(health_range_path) as Range
|
||||
_health_text = get_node(health_text_path) as Label
|
||||
_resource_range = get_node(resource_range_path) as Range
|
||||
@ -55,7 +58,8 @@ func set_player(p_player : Entity) -> void:
|
||||
_player.disconnect("notification_caura", self, "on_notification_caura")
|
||||
_player.disconnect("diecd", self, "diecd")
|
||||
_player.disconnect("centity_resource_added", self, "centity_resource_added")
|
||||
|
||||
_player.disconnect("con_level_changed", self, "con_level_changed")
|
||||
|
||||
if _mana != null:
|
||||
_mana.disconnect("changed", self, "_on_mana_changed")
|
||||
_mana = null
|
||||
@ -81,6 +85,7 @@ func set_player(p_player : Entity) -> void:
|
||||
_player.connect("notification_caura", self, "on_notification_caura")
|
||||
_player.connect("diecd", self, "diecd", [], CONNECT_DEFERRED)
|
||||
_player.connect("centity_resource_added", self, "centity_resource_added")
|
||||
_player.connect("con_level_changed", self, "con_level_changed")
|
||||
|
||||
for i in range(_player.resource_getc_count()):
|
||||
centity_resource_added(_player.resource_getc_index(i))
|
||||
@ -90,6 +95,7 @@ func set_player(p_player : Entity) -> void:
|
||||
_health.connect("changed", self, "_on_player_health_changed")
|
||||
|
||||
_name_text.text = _player.centity_name
|
||||
_level_text.text = str(_player.clevel)
|
||||
|
||||
set_process(true)
|
||||
show()
|
||||
@ -149,3 +155,6 @@ func _on_player_health_changed() -> void:
|
||||
|
||||
func diecd(entity : Entity) -> void:
|
||||
set_player(null)
|
||||
|
||||
func con_level_changed(entity: Entity, level: int):
|
||||
_level_text.text = str(entity.clevel)
|
||||
|
@ -16,7 +16,8 @@ __meta__ = {
|
||||
"_edit_use_anchors_": false
|
||||
}
|
||||
aura_entry_scene = ExtResource( 2 )
|
||||
name_text_path = NodePath("MarginContainer/VBoxContainer/Label")
|
||||
name_text_path = NodePath("MarginContainer/VBoxContainer/HBoxContainer/Label")
|
||||
level_text_path = NodePath("MarginContainer/VBoxContainer/HBoxContainer/Label2")
|
||||
health_range_path = NodePath("MarginContainer/VBoxContainer/MarginContainer/ProgressBar")
|
||||
health_text_path = NodePath("MarginContainer/VBoxContainer/MarginContainer/Label")
|
||||
resource_range_path = NodePath("MarginContainer/VBoxContainer/MarginContainer2/ProgressBar")
|
||||
@ -36,10 +37,24 @@ margin_bottom = 49.0
|
||||
size_flags_horizontal = 3
|
||||
custom_constants/separation = 0
|
||||
|
||||
[node name="Label" type="Label" parent="MarginContainer/VBoxContainer"]
|
||||
[node name="HBoxContainer" type="HBoxContainer" parent="MarginContainer/VBoxContainer"]
|
||||
margin_right = 141.0
|
||||
margin_bottom = 15.0
|
||||
size_flags_horizontal = 3
|
||||
size_flags_vertical = 3
|
||||
|
||||
[node name="Label" type="Label" parent="MarginContainer/VBoxContainer/HBoxContainer"]
|
||||
margin_right = 137.0
|
||||
margin_bottom = 15.0
|
||||
size_flags_horizontal = 3
|
||||
size_flags_vertical = 7
|
||||
valign = 1
|
||||
|
||||
[node name="Label2" type="Label" parent="MarginContainer/VBoxContainer/HBoxContainer"]
|
||||
margin_left = 141.0
|
||||
margin_right = 141.0
|
||||
margin_bottom = 15.0
|
||||
size_flags_horizontal = 0
|
||||
valign = 1
|
||||
|
||||
[node name="MarginContainer" type="MarginContainer" parent="MarginContainer/VBoxContainer"]
|
||||
|
Loading…
Reference in New Issue
Block a user