generated from Nekojimi/GodotTemplate
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
400 B
17 lines
400 B
3 years ago
|
extends Node2D
|
||
|
|
||
|
const OFFSET: Vector2 = Vector2(16,16)
|
||
|
|
||
|
func _draw() -> void:
|
||
|
for cellGraphData in get_parent().cellGraph:
|
||
|
for link in cellGraphData.links:
|
||
|
var from: Vector2 = get_parent().map_pos(cellGraphData.cell) + OFFSET
|
||
|
var to: Vector2 = get_parent().map_pos(link) + OFFSET
|
||
|
from = from.move_toward(to,10)
|
||
|
draw_line(
|
||
|
from,
|
||
|
to,
|
||
|
Color.blueviolet,
|
||
|
2.0,
|
||
|
true)
|