6 lines
112 B
GDScript
6 lines
112 B
GDScript
extends Area
|
|
|
|
func on_player_interact(player: Spatial) -> bool:
|
|
player.sleep(true, $hop_position)
|
|
return true
|