Oh my god it's gameplay

This commit is contained in:
Zoey Kitt 2024-11-16 14:03:25 -06:00
parent 1a3455015d
commit c8ae63405f
2 changed files with 5 additions and 0 deletions

View file

@ -41,3 +41,7 @@ func _on_microgame_win(window: MicrogameWindow):
func _on_stock_ticker_buy(amount: Variant) -> void:
net_worth = net_worth.minus(amount)
func _on_stock_ticker_sell(amount: Variant) -> void:
net_worth = net_worth.plus(amount)

View file

@ -33,3 +33,4 @@ size = Vector2i(1280, 720)
[connection signal="timeout" from="Microgame spawn timer" to="." method="_on_microgame_spawn_timer_timeout"]
[connection signal="buy" from="Window/Stock ticker" to="." method="_on_stock_ticker_buy"]
[connection signal="sell" from="Window/Stock ticker" to="." method="_on_stock_ticker_sell"]