7 lines
113 B
GDScript
7 lines
113 B
GDScript
extends Area3D
|
|
|
|
|
|
func _process(delta: float) -> void:
|
|
if Input.is_key_pressed(KEY_E):
|
|
body_entered.emit(null)
|