mirror of
https://github.com/Steffo99/swear-jar.git
synced 2024-11-21 23:34:18 +00:00
garasauto
This commit is contained in:
parent
3b27e8a269
commit
b824ef2429
3 changed files with 6 additions and 2 deletions
|
@ -72,6 +72,7 @@ func update_counter_text():
|
|||
@export var upgrade_copper_texture: Texture2D
|
||||
@export var upgrade_silver_texture: Texture2D
|
||||
@export var upgrade_gold_texture: Texture2D
|
||||
@export var upgrade_gem_texture: Texture2D
|
||||
|
||||
func update_counter_icon():
|
||||
if len(store_collector.collecting_types) == 0:
|
||||
|
@ -82,6 +83,8 @@ func update_counter_icon():
|
|||
store_collector_texturerect.texture = upgrade_silver_texture
|
||||
elif store_collector.collecting_types[0] == &"Gold":
|
||||
store_collector_texturerect.texture = upgrade_gold_texture
|
||||
elif store_collector.collecting_types[0] == &"Gem":
|
||||
store_collector_texturerect.texture = upgrade_gem_texture
|
||||
else:
|
||||
store_collector_texturerect.texture = null
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
[gd_scene load_steps=23 format=3 uid="uid://c3rxmcwa5nqng"]
|
||||
[gd_scene load_steps=24 format=3 uid="uid://c3rxmcwa5nqng"]
|
||||
|
||||
[ext_resource type="Script" path="res://game/game.gd" id="1_i3ly0"]
|
||||
[ext_resource type="PackedScene" uid="uid://bllsprv8orpn4" path="res://bottle/bottle.tscn" id="1_y7o2l"]
|
||||
|
@ -6,6 +6,7 @@
|
|||
[ext_resource type="Texture2D" uid="uid://7b12rwclhrq0" path="res://interface/upgrade_silver.png" id="3_8wvr1"]
|
||||
[ext_resource type="PackedScene" uid="uid://c67lfbk4gf1ga" path="res://spawner/spawner.tscn" id="3_qwsty"]
|
||||
[ext_resource type="Texture2D" uid="uid://taojrwr7xrp4" path="res://interface/upgrade_gold.png" id="4_i557v"]
|
||||
[ext_resource type="Texture2D" uid="uid://yx3gme4q4ote" path="res://interface/upgrade_gem.png" id="5_y725k"]
|
||||
[ext_resource type="Texture2D" uid="uid://pj3ip6vlatms" path="res://converters/copper_to_silver/copper_converter.png" id="6_0jj8g"]
|
||||
[ext_resource type="PackedScene" uid="uid://beg758fa6o0cs" path="res://value/evaluator.tscn" id="6_my6nv"]
|
||||
[ext_resource type="PackedScene" uid="uid://ratkps4plkhl" path="res://converters/copper_to_silver/copper_converter.tscn" id="7_ipeok"]
|
||||
|
@ -39,6 +40,7 @@ script = ExtResource("1_i3ly0")
|
|||
upgrade_copper_texture = ExtResource("11_lt33g")
|
||||
upgrade_silver_texture = ExtResource("3_8wvr1")
|
||||
upgrade_gold_texture = ExtResource("4_i557v")
|
||||
upgrade_gem_texture = ExtResource("5_y725k")
|
||||
|
||||
[node name="GravityFromGyro" parent="." instance=ExtResource("2_h2pfr")]
|
||||
|
||||
|
|
|
@ -313,7 +313,6 @@ item_description = "Create a silver coin when tapping!"
|
|||
item_cost_text = "5 gold"
|
||||
item_cost_type = &"Gold"
|
||||
item_cost_goal = 5
|
||||
has_unlocked = false
|
||||
one_shot = true
|
||||
|
||||
[node name="PurchasableItemPadding" parent="Rows/PaddedScrollable/Scrollable/ScrollableItems/AutomaticCategory" instance=ExtResource("3_4feaj")]
|
||||
|
|
Loading…
Reference in a new issue