Hi everyone,
a certain button press instances a short animation-scene:
var little_anim = preload("res://xyz/cool-anims/nicelittleanim.tscn").instance()
add_child(little_anim)
Naturally the animation runs exactly on its set screen position.
Is it possible to have this same animation positioned in different spots by code? Adding a TWEEN doesn't seem to work in such a case...