mirror of
https://github.com/Steffo99/swear-jar.git
synced 2024-11-21 23:34:18 +00:00
10 lines
257 B
GDScript
10 lines
257 B
GDScript
extends Node2D
|
|
class_name Spawner
|
|
@export var scene: PackedScene
|
|
@export var target_parent: NodePath
|
|
|
|
func spawn():
|
|
var scene_instant= scene.instantiate()
|
|
scene_instant.position=Vector2.ZERO
|
|
add_child(scene_instant)
|
|
print(scene_instant.global_position)
|