mirror of
https://github.com/Steffo99/looping-for-loops.git
synced 2024-11-21 23:54:23 +00:00
10 lines
142 B
GDScript
10 lines
142 B
GDScript
extends Area2D
|
|
class_name Buzzsaw
|
|
|
|
|
|
func _ready():
|
|
$AnimationPlayer.play("SpinClockwise")
|
|
|
|
|
|
func _on_Buzzsaw_body_entered(body):
|
|
body.die()
|