This commit is contained in:
2026-05-13 18:52:00 +02:00
commit 2bb1acbece
404 changed files with 33353 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
@tool
extends Object
class_name ClosestPointOnCurveMeta
var before_segment : int
var point_position : Vector2
var local_point_position : Vector2
func _init(bs : int = 0, pp := Vector2.ZERO , lpp := Vector2.ZERO):
before_segment = bs
point_position = pp
local_point_position = lpp
func _to_string() -> String:
return (
"ClosestPointOnCurveMeta(before_segment: " + str(before_segment) +
", point_position: " + str(point_position) +
", local_point_position: " + str(local_point_position) +
")"
)