Finish migration I think? I got distracted
This commit is contained in:
parent
7546c31057
commit
21609e84f2
3 changed files with 29 additions and 20 deletions
|
@ -1,23 +1,14 @@
|
|||
extends Node2D
|
||||
|
||||
var net_worth: Big
|
||||
|
||||
# Called when the node enters the scene tree for the first time.
|
||||
func _ready() -> void:
|
||||
_on_microgame_spawn_timer_timeout()
|
||||
net_worth = Big.new(1000)
|
||||
|
||||
var window = get_window()
|
||||
window.position = Vector2(450, 360)
|
||||
window.size = Vector2(1319, 300)
|
||||
|
||||
# Called every frame. 'delta' is the elapsed time since the previous frame.
|
||||
func _process(delta: float) -> void:
|
||||
# The most important functionality
|
||||
if Input.is_action_just_pressed("G"):
|
||||
$Meow.play()
|
||||
|
||||
#$Score.text = "Net worth: \n$%s" % net_worth.toString()
|
||||
|
||||
|
||||
func _on_microgame_spawn_timer_timeout() -> void:
|
||||
|
@ -40,11 +31,3 @@ func _on_microgame_spawn_timer_timeout() -> void:
|
|||
|
||||
func _on_microgame_win(window: MicrogameWindow):
|
||||
print("yay")
|
||||
|
||||
|
||||
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)
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
[gd_scene load_steps=48 format=3 uid="uid://d06d1vihf2oqp"]
|
||||
[gd_scene load_steps=49 format=3 uid="uid://d06d1vihf2oqp"]
|
||||
|
||||
[ext_resource type="Texture2D" uid="uid://b03ygtrwha22g" path="res://taytay/IMG_5199.jpeg" id="1_o2s48"]
|
||||
[ext_resource type="Script" path="res://scenes/main.gd" id="1_y7a0r"]
|
||||
|
@ -7,6 +7,7 @@
|
|||
[ext_resource type="AudioStream" uid="uid://wtoxhk0tf8ev" path="res://funny_sounds/Cat Meow - Minecraft Sound Effect (HD).mp3" id="3_gatxj"]
|
||||
[ext_resource type="PackedScene" uid="uid://g2veoq55y14i" path="res://scenes/stockticker/Stock Ticker.tscn" id="4_0ankd"]
|
||||
[ext_resource type="PackedScene" uid="uid://bbg7lnak6kup7" path="res://scenes/LegallyDistinctPaperclipAssistant/window.tscn" id="5_6agvn"]
|
||||
[ext_resource type="Script" path="res://scenes/score_window/score_window.gd" id="6_gvoxs"]
|
||||
[ext_resource type="Texture2D" uid="uid://dohsqvvi8y64h" path="res://UI/fish-spinning-ezgif.com-gif-to-sprite-converter.png" id="8_oj2tc"]
|
||||
|
||||
[sub_resource type="AtlasTexture" id="AtlasTexture_uyge7"]
|
||||
|
@ -308,6 +309,7 @@ size = Vector2i(1280, 720)
|
|||
[node name="Clippette" parent="." instance=ExtResource("5_6agvn")]
|
||||
|
||||
[node name="Score window" type="Node2D" parent="."]
|
||||
script = ExtResource("6_gvoxs")
|
||||
|
||||
[node name="Background" type="Sprite2D" parent="Score window"]
|
||||
modulate = Color(0.796078, 0.796078, 0.796078, 1)
|
||||
|
@ -334,5 +336,5 @@ text = "Net worth:
|
|||
$00000000000000000000"
|
||||
|
||||
[connection signal="timeout" from="Microgame spawn timer" to="." method="_on_microgame_spawn_timer_timeout"]
|
||||
[connection signal="buy" from="Stock ticker window/Stock ticker" to="." method="_on_stock_ticker_buy"]
|
||||
[connection signal="sell" from="Stock ticker window/Stock ticker" to="." method="_on_stock_ticker_sell"]
|
||||
[connection signal="buy" from="Stock ticker window/Stock ticker" to="Score window" method="_on_stock_ticker_buy"]
|
||||
[connection signal="sell" from="Stock ticker window/Stock ticker" to="Score window" method="_on_stock_ticker_sell"]
|
||||
|
|
24
scenes/score_window/score_window.gd
Normal file
24
scenes/score_window/score_window.gd
Normal file
|
@ -0,0 +1,24 @@
|
|||
extends Node2D
|
||||
|
||||
var net_worth: Big
|
||||
|
||||
# Called when the node enters the scene tree for the first time.
|
||||
func _ready() -> void:
|
||||
net_worth = Big.new(1000)
|
||||
|
||||
var window = get_window()
|
||||
window.position = Vector2(450, 360)
|
||||
window.size = Vector2(1319, 300)
|
||||
|
||||
|
||||
# Called every frame. 'delta' is the elapsed time since the previous frame.
|
||||
func _process(delta: float) -> void:
|
||||
$Score.text = "Net worth: \n$%s" % net_worth.toString()
|
||||
|
||||
|
||||
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)
|
Loading…
Add table
Reference in a new issue