mirror of
https://github.com/Steffo99/swear-jar.git
synced 2024-11-22 07:44:17 +00:00
37 lines
1.1 KiB
GDScript
37 lines
1.1 KiB
GDScript
extends Area2D
|
|
class_name Collector
|
|
## Area that will pick up [Collectible]s with a given name, keeping track of the amount collected.
|
|
|
|
|
|
## The current amount of collected entities.
|
|
var collected_count: int = 0
|
|
|
|
## The types of [Collectible]s to pick up.
|
|
##
|
|
## The strings will match only if exactly the same.
|
|
@export var collecting_types: Array[StringName]
|
|
@export var sound_absorb: AudioStreamPlayer
|
|
## The goal amount of entities to collect.
|
|
##
|
|
## When [collected_count] reaches it, it will be reset to zero, and the "goal" signal will be emitted.
|
|
@export var collecting_amount: int
|
|
|
|
## The collector has picked up an object.
|
|
signal collected(body: PhysicsBody2D)
|
|
|
|
## The collector has received its collection goal and is about to reset.
|
|
signal goal
|
|
|
|
|
|
func _on_body_entered(body: Node2D):
|
|
if body is PhysicsBody2D:
|
|
var collectible: Collectible = body.find_child("Collectible")
|
|
if collectible and collectible.type in collecting_types:
|
|
collected_count += 1
|
|
collectible.collect()
|
|
if sound_absorb:
|
|
sound_absorb.play()
|
|
emit_signal("collected", body)
|
|
if collected_count >= collecting_amount:
|
|
emit_signal("goal")
|
|
collected_count = 0
|