8 lines
175 B
GDScript
8 lines
175 B
GDScript
extends Node
|
|
|
|
|
|
func on_player_start_interacting():
|
|
Session.interact(get_parent().player_id)
|
|
|
|
func on_player_end_interacting():
|
|
Session.stop_interact(get_parent().player_id)
|