started adding completion system

This commit is contained in:
2024-01-19 12:53:24 +01:00
parent be95ec8202
commit 269729a1d9
13 changed files with 238 additions and 31 deletions

View File

@@ -1,6 +1,7 @@
extends StaticBody3D
extends Completer
@onready var animation_player: AnimationPlayer = $AnimationPlayer
func _on_interaction_area_interacted():
animation_player.play("press")
completed.emit()

View File

@@ -0,0 +1,4 @@
extends Node
class_name Completer
signal completed