Initial push
This commit is contained in:
commit
3240f07946
335 changed files with 11248 additions and 0 deletions
11
Scripts/Menu/inventory_ui_item.gd
Normal file
11
Scripts/Menu/inventory_ui_item.gd
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
extends Node
|
||||
|
||||
@onready var title : Label = $Name
|
||||
@onready var value : Label = $Value
|
||||
@onready var weight : Label = $Weight
|
||||
|
||||
|
||||
func set_values(new_title : String, new_value : int, new_weight : int) -> void:
|
||||
title.text = new_title
|
||||
value.text = str(new_value)
|
||||
weight.text = str(new_weight)
|
||||
Loading…
Add table
Add a link
Reference in a new issue