Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Dynamically Generated Spline Problems
#1
Hello,

Having a problem and wondering if someone can help me out.

I have pieces of geometry that have a few splines in them. Right now I instantiate these pieces at the beginning of my level, and line them up, I then connect the splines using connection Curvy Connection. After this, I take my first spline and set it on the Player's SplineController in code, then call Spline.Refres(), controller.Prepare and controller.Play():

Code:
RunnerController controller = GetComponent<RunnerController>();
if (controller != null)
{
controller.Spline = manager.CurrentTile.Lanes[TileData.LaneAssignment.Center];
controller.Spline.Refresh();
controller.Prepare();
controller.Play();
}

I just cannot get the Player to follow the spline or move at all. Debugging the controller, I reach a point in Play() where IsInitialized is false because Length == 0.

If I perform these type of connection in-editor, the preview works, and I can see the connection has a proper Length.

   

At runtime, this is not the case, as the connected CP is reset back to (0, 0, 0).

   

I also tried not connecting my splines and just setting one on the player, and the same problem persists. If my move the connected CP to their original location, and then call Play() manually on the controller, it works properly. For some reason it seems the connection is resetting the CP back to origin.

Any help would be greatly appreciated!
Reply


Messages In This Thread
Dynamically Generated Spline Problems - by ricardo@fivebits.gs - 04-03-2017, 06:42 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Curvy Line Renderer for UI Spline? gekido 3 6 04-04-2024, 12:56 PM
Last Post: _Aka_
  Get position of all control points for a spline gekido 1 6 03-28-2024, 10:08 PM
Last Post: _Aka_
  Adjust radius of generated mesh via script? Shackman 1 4 03-26-2024, 01:12 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_

Forum Jump: