Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
spline controller is frustrating
#1
I just want to assign a spline and make it play. Why is it so complicated to make it work?

Code:
splineController.Spline = myspline;
splineController.Refresh();
splineController.Position = 0;
splineController.Speed = 1;
while (!splineController.IsInitialized)
{
yield return null;
}
splineController.Play();

NOTHING HAPPENS

how is it done?
www.hawkenking.com - interactive design & game development
Reply
#2
Hi,
I suppose the provided code lays within a Start method. Based on this supposition, your issue happens because your code is executed before the Start() method of the controller.
To avoid the issue, make sure your code is executed after the Controller's start. You can use the Unity's script execution order for this effect.
Another way to avoid the issue is to use splineController.PlayAutomatically = true; to make the controller play whenever he is ready.

Also, your code can be simplified:
Code:
splineController.Spline = myspline;
splineController.Position = 0;
splineController.Speed = 1;
splineController.Play();

As of Curvy 2.2.3, both controllers and splines did have issues with initialization order, which is the cause the bug you encountered. Curvy 2.2.4 was planned to include a code rework of the controllers and splines to fix this issue, other issues, and reduce CPU and memory usage. That work ended up being long enough to be divided into two releases:
  • 2.2.4 : Curvy Spline and Curvy Spline Segments (and few fixes for controllers)
  • 2.2.5 (which I am working on right now) : Spline Controller and other controllers.
Sorry for the inconvenience, and please let me know if you still encounter the issue. If so, please provide me the Curvy version you are using, and a description of where and when the posted code is called.

Thank you and have a nice day.
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
Bug Changing spline connection in inspector causes splines to revert to defaults lacota 3 6 03-18-2024, 07:55 PM
Last Post: _Aka_
  GO can't fit end of the spline GameDeveloperek4123 3 13 03-04-2024, 11:06 AM
Last Post: _Aka_
  Keeping a fixed spline length jh092 3 16 02-21-2024, 06:25 AM
Last Post: Primrose44
  How could I get position in spline from "From" value in BuildRasterizedPath? Chanon 1 8 02-12-2024, 09:54 PM
Last Post: _Aka_

Forum Jump: