GraphEditor/TestWorld.gd

14 lines
340 B
GDScript

extends Node2D
# Called when the node enters the scene tree for the first time.
func _ready():
var a = $ConceptA/Component.position + $ConceptA.position
var b = $ConceptB/Component.position + $ConceptB.position
$Link.align(a, b)
# Called every frame. 'delta' is the elapsed time since the previous frame.
func _process(delta):
pass