mirror of
https://github.com/Steffo99/pineapple-surf.git
synced 2024-11-21 23:34:21 +00:00
12 lines
171 B
GDScript
12 lines
171 B
GDScript
extends Node
|
|
class_name CanSink
|
|
|
|
|
|
## This fell in the water.
|
|
## Triggers before SinkArea.has_sunk .
|
|
signal sank()
|
|
|
|
|
|
func sink():
|
|
$SplashSound.play()
|
|
emit_signal("sank")
|