Make single HEAD float to the center

This commit is contained in:
Sebastian Morr 2020-10-29 16:06:38 +01:00
parent c49fa2f7d4
commit 814caca382
2 changed files with 7 additions and 5 deletions

View file

@ -14,10 +14,6 @@ func _process(_delta):
if not (repository and repository.objects.has(source)):
return
if repository.objects[source].type == "head":
$Tip.hide()
$Line.hide()
var start = repository.objects[source].position
var end = start + Vector2(0, 60)
@ -40,3 +36,7 @@ func _process(_delta):
$Line.points[1] -= $Line.points[1].normalized()*30
$Tip.position = $Line.points[1]
$Tip.rotation = PI+$Line.points[0].angle_to($Line.points[1])
if repository.objects[source].type == "head":
$Tip.hide()
$Line.hide()

View file

@ -164,7 +164,9 @@ func update_refs():
func apply_forces():
for o in objects.values():
if not o.visible or o.type == "head":
if not o.visible:
continue
if o.type == "head" and o.children.size() > 0 and objects.has(o.children.keys()[0]):
continue
for o2 in objects.values():
if o == o2 or not o2.visible or o2.type == "head":