Salmon
This commit is contained in:
parent
5283cc1d09
commit
8102749611
3 changed files with 8 additions and 2 deletions
|
@ -110,7 +110,7 @@ func _on_texture_button_button_up() -> void:
|
||||||
var fish_choice: FishType = randi_range(0,len(fishes))
|
var fish_choice: FishType = randi_range(0,len(fishes))
|
||||||
|
|
||||||
# hehe
|
# hehe
|
||||||
fish_choice = FishType.GAR
|
fish_choice = FishType.SALMON
|
||||||
|
|
||||||
match fish_choice:
|
match fish_choice:
|
||||||
FishType.GAR:
|
FishType.GAR:
|
||||||
|
@ -118,6 +118,7 @@ func _on_texture_button_button_up() -> void:
|
||||||
fish_chosen.emit(gar.get_node("GarSprite"), "Gar :)")
|
fish_chosen.emit(gar.get_node("GarSprite"), "Gar :)")
|
||||||
FishType.SALMON:
|
FishType.SALMON:
|
||||||
salmon.visible = true
|
salmon.visible = true
|
||||||
|
fish_chosen.emit(salmon.get_node("SalmonSprite"), "Salmon")
|
||||||
FishType.BASS:
|
FishType.BASS:
|
||||||
bass.visible = true
|
bass.visible = true
|
||||||
FishType.HUMUHUMUNUKUNUKUAPUA_A:
|
FishType.HUMUHUMUNUKUNUKUAPUA_A:
|
||||||
|
|
|
@ -30,6 +30,7 @@ scale = Vector2(0.671875, 0.622)
|
||||||
texture = ExtResource("9_bv8iw")
|
texture = ExtResource("9_bv8iw")
|
||||||
|
|
||||||
[node name="Label" type="Label" parent="."]
|
[node name="Label" type="Label" parent="."]
|
||||||
|
visible = false
|
||||||
offset_left = 823.0
|
offset_left = 823.0
|
||||||
offset_top = 588.0
|
offset_top = 588.0
|
||||||
offset_right = 1082.0
|
offset_right = 1082.0
|
||||||
|
|
|
@ -6,6 +6,8 @@ extends Node2D
|
||||||
signal buy(amount: Variant)
|
signal buy(amount: Variant)
|
||||||
signal sell(amount: Variant)
|
signal sell(amount: Variant)
|
||||||
|
|
||||||
|
var fish_name: String
|
||||||
|
|
||||||
func _on_stonks_buy(amount: Variant) -> void:
|
func _on_stonks_buy(amount: Variant) -> void:
|
||||||
print("-$%s" % amount.toString())
|
print("-$%s" % amount.toString())
|
||||||
buy.emit(amount)
|
buy.emit(amount)
|
||||||
|
@ -19,6 +21,7 @@ func _on_stonks_sell(amount: Variant) -> void:
|
||||||
# Scope creep!
|
# Scope creep!
|
||||||
func start():
|
func start():
|
||||||
$Timer.start()
|
$Timer.start()
|
||||||
|
get_window().title = fish_name
|
||||||
|
|
||||||
|
|
||||||
func set_icon(sprite: Sprite2D):
|
func set_icon(sprite: Sprite2D):
|
||||||
|
@ -27,4 +30,5 @@ func set_icon(sprite: Sprite2D):
|
||||||
|
|
||||||
func _on_fishin_fish_chosen(fish_sprite: Sprite2D, fish_name: String) -> void:
|
func _on_fishin_fish_chosen(fish_sprite: Sprite2D, fish_name: String) -> void:
|
||||||
$Sprite2D.texture = fish_sprite.texture
|
$Sprite2D.texture = fish_sprite.texture
|
||||||
$Label.text = fish_name
|
self.fish_name = fish_name
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue