summaryrefslogtreecommitdiff
path: root/Stages/Paths/PathNode.gd
blob: 6bc7853977c5058b4590c4cc5fb6d99b11216745 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
class_name PathNode
extends Node2D


@export var next_node: Node2D

var path_position: Vector2


func _ready():
	path_position = $PathPosition.global_position


func get_rpc_properties():
	return {
		"global_position": null,
		"path_position": null,
	}