mirror of
https://github.com/Steffo99/swear-jar.git
synced 2024-11-22 15:44:21 +00:00
11 lines
257 B
GDScript3
11 lines
257 B
GDScript3
|
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)
|