blob: df31a9ed74388626474fc32548894a30d69e246c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
extends RigidBody2D
@export var particle : PackedScene
# Called when the node enters the scene tree for the first time.
func _ready():
position = Vector2(randf_range(100, 1180), randf_range(100, 620))
# Called every frame. 'delta' is the elapsed time since the previous frame.
func _process(delta):
pass
func destroy():
var new = particle.instantiate()
new.position = global_position
new.emitting = true
get_tree().get_root().get_node("Prototype").add_child(new)
queue_free()
|