Add transaction signal

This commit is contained in:
Zoey Kitt 2024-11-16 13:16:05 -06:00
parent 606c1714c6
commit abf562ee7d
2 changed files with 5 additions and 1 deletions

View file

@ -4,7 +4,7 @@
[ext_resource type="Script" path="res://scenes/main.gd" id="1_y7a0r"]
[ext_resource type="AudioStream" uid="uid://wtoxhk0tf8ev" path="res://funny_sounds/Cat Meow - Minecraft Sound Effect (HD).mp3" id="3_gatxj"]
[node name="Node2D" type="Node2D"]
[node name="Node2D2" type="Node2D"]
script = ExtResource("1_y7a0r")
[node name="Sprite2D" type="Sprite2D" parent="."]

View file

@ -1,5 +1,7 @@
extends Node2D
signal transaction(amount: float)
const MAX_PRICES = 15
const Y_START = 60
@ -158,6 +160,7 @@ func _on_buy_button_button_up() -> void:
shares += 1
shares_label.text = "Shares\nHeld:%d" % shares
hype_mult += hype_inc
transaction.emit(-prev_price)
func _on_sell_button_button_up() -> void:
@ -165,3 +168,4 @@ func _on_sell_button_button_up() -> void:
shares -= 1
shares_label.text = "Shares\nHeld:%d" % shares
panic_mult += panic_inc
transaction.emit(prev_price)