Added state component
This commit is contained in:
@ -1,4 +1,4 @@
|
||||
[gd_scene load_steps=15 format=3 uid="uid://dagn5bf7ou3sd"]
|
||||
[gd_scene load_steps=16 format=3 uid="uid://dagn5bf7ou3sd"]
|
||||
|
||||
[ext_resource type="PackedScene" uid="uid://cch67vqpsmtej" path="res://ui/debug/DebugLabel.tscn" id="1_7s8uu"]
|
||||
[ext_resource type="Script" path="res://ui/UI.gd" id="1_l5b6o"]
|
||||
@ -13,6 +13,7 @@
|
||||
[ext_resource type="Script" path="res://ui/debug/DownloadLabel.gd" id="8_ogt38"]
|
||||
[ext_resource type="Script" path="res://ui/connect/ConnectPanel.gd" id="11_cwl0t"]
|
||||
[ext_resource type="PackedScene" uid="uid://bqpbrju7mc7d5" path="res://ui/settings/Settings.tscn" id="11_rt7sl"]
|
||||
[ext_resource type="Script" path="res://ui/debug/StateLabel.gd" id="12_rr0mv"]
|
||||
[ext_resource type="PackedScene" uid="uid://y6kdpmp5glv0" path="res://ui/inventory/Inventory.tscn" id="13_1fc2b"]
|
||||
|
||||
[node name="UI" type="Control"]
|
||||
@ -104,6 +105,11 @@ grow_horizontal = 0
|
||||
[node name="VBoxContainer" type="VBoxContainer" parent="Canvas/TopRight"]
|
||||
layout_mode = 2
|
||||
|
||||
[node name="State" parent="Canvas/TopRight/VBoxContainer" instance=ExtResource("1_7s8uu")]
|
||||
layout_mode = 2
|
||||
alignment = 2
|
||||
script = ExtResource("12_rr0mv")
|
||||
|
||||
[node name="Position" parent="Canvas/TopRight/VBoxContainer" instance=ExtResource("1_7s8uu")]
|
||||
layout_mode = 2
|
||||
alignment = 2
|
||||
|
@ -3,6 +3,6 @@ extends Control
|
||||
|
||||
var text: String:
|
||||
get:
|
||||
return get_child(1).text
|
||||
return %Value.text
|
||||
set(value):
|
||||
get_child(1).text = value
|
||||
%Value.text = value
|
@ -12,4 +12,5 @@ text = "Container:"
|
||||
script = ExtResource("2_l1apn")
|
||||
|
||||
[node name="Value" type="Label" parent="."]
|
||||
unique_name_in_owner = true
|
||||
layout_mode = 2
|
||||
|
14
client/ui/debug/StateLabel.gd
Normal file
14
client/ui/debug/StateLabel.gd
Normal file
@ -0,0 +1,14 @@
|
||||
extends DebugLabel
|
||||
|
||||
var keys := StateComponent.State.keys()
|
||||
var state: StateComponent
|
||||
|
||||
func _process(_delta):
|
||||
if !Global.player:
|
||||
return
|
||||
|
||||
if !state:
|
||||
state = Global.player.get_node("State")
|
||||
return
|
||||
|
||||
text = keys[state.current]
|
Reference in New Issue
Block a user