Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Changing control points at runtime
#1
Hello,

I'd like to use CurvySpline for path rendering. Therefore every entity (vehicle) has a CurvySpline attached, which I create in code at startup. When a new target is selected for the entity, I first do some pathfinding and then set the waypoints as the spline's control points. The process is as follows:

mSpline.Clear();
foreach(Waypoint waypoint in waypoints) {
   mSpline.Add(new Vector3(waypoint .position.x * Map.TILE_SIZE, 0, waypoint .position.y * Map.TILE_SIZE));
}
mSpline.RefreshImmediately();
DrawPath();

At first time this works as expected. But on subsequent calls strange things happen. In Hierarchy View you can see the Spline Game Object, with child objects for each control point. In the Inspector View you can see that there are to many control points (amount differs from number of children in Hierachy View), so it seems like Clear() didn't really remove the control points. After a while I get "MissingReferenceException: The object of type 'CurvySplineSegment' has been destroyed but you are still trying to access it." when I call mSpline.InterpolateFast(). I tried to spread the calls on multiple frames, so first clear spline, next frame(next Update()-call) create new spline with Add(), next frame draw path. But that didn't help. So how's the correct code to change a spline at runtime? Should I use Clear() at all or just create a new spline?

 
Reply
#2
Ok, it's working now. Had to use Spline.OnRefresh, and in the callback had to check Spline.IsInitialized and mSpline.Length != 0.
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  snap to the curve created by the curvy splines segment points ShiroeYamamoto 1 2 Yesterday, 10:23 PM
Last Post: _Aka_
  Get position of all control points for a spline gekido 1 2 Yesterday, 10:08 PM
Last Post: _Aka_
Bug Changing spline connection in inspector causes splines to revert to defaults lacota 3 6 03-18-2024, 07:55 PM
Last Post: _Aka_
  Avoiding runtime GC allocations on control point position change Ell223 8 18 02-24-2024, 10:43 AM
Last Post: _Aka_

Forum Jump: