19 lines
327 B
GDScript
19 lines
327 B
GDScript
extends BodyPart
|
|
|
|
|
|
onready var touch_area = get_node("TouchArea")
|
|
|
|
|
|
# Called when the node enters the scene tree for the first time.
|
|
func _ready() -> void:
|
|
touch_area.connect("body_entered", self, "_on_touch_area_entered")
|
|
|
|
|
|
func _on_touch_area_entered(body):
|
|
if body.name != base.name:
|
|
push(body)
|
|
|
|
|
|
func push(body):
|
|
pass
|