Oh my god it's gameplay
This commit is contained in:
parent
1a3455015d
commit
c8ae63405f
2 changed files with 5 additions and 0 deletions
|
@ -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)
|
||||
|
|
|
@ -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"]
|
||||
|
|
Loading…
Add table
Reference in a new issue