Thread Rating:
  • 1 Vote(s) - 5 Average
  • 1
  • 2
  • 3
  • 4
  • 5
How to get list of control points
#1
Hi so I need to get a list of control points at a connection.

I've looked in the API and found this https://api.curvyeditor.com/520/class_fl...8a9150ebea
but I just don't know how to use it basically.

This is the code I'm using ( provided by aka ), which has worked well so far, but now I need to find what control points are part of the connection.
Code:
public override CurvySplineSegment SelectConnectedControlPoint(SplineController caller, CurvyConnection connection, CurvySplineSegment currentControlPoint)


{
// my own logic here for returning curvysplinesegment
return currentControlPoint;
}


It would be very much appreciated if you could provide a example of how to get a list of control points.

Regards


EDIT - I've worked it out  Smile

Although I used other controls points instead ( which is actually better )
Just in case anyone else struggling with this 
Code:
foreach (CurvySplineSegment con_Point in connection.OtherControlPoints(currentControlPoint))
{
Debug.Log (con_Point.gameObject.name);



}
Reply
#2
Thanks for sharing your findings
Available for freelance work, feel free to reach out: toolbuddy.net
Please consider leaving a review for Curvy, this helps immensely. Thank you.
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  OnAfterControlPointAdded - Control Point is null jh092 5 689 02-04-2025, 09:31 PM
Last Post: _Aka_
  How to generate gameobject on the control point Yang Yi 1 295 12-10-2024, 10:14 PM
Last Post: _Aka_
  Scene 51: Dynamic track between two points wallflower6 3 423 08-19-2024, 08:18 AM
Last Post: _Aka_
  snap to the curve created by the curvy splines segment points ShiroeYamamoto 3 551 04-02-2024, 02:24 PM
Last Post: _Aka_

Forum Jump: