Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
how do I position a splineController on a spline in runtime to an exact position?
#6
Thanks I changed to a relative position and went from there, works nicely however in the end I had to make it a coroutine and do a while loop to make it / force it to go to the place I wanted, seems sometimes spline controllers go to 0... took about 5~10 frames before it went to the correct position. heres the code:

Code:
    IEnumerator PlaceOnOpenTrack()
    {
        mySC.Spline = myPath;
        float desiredPos = path1.Length + (path2.Length * 0.5f);
        mySC.Position = desiredPos;
        if (mySC.Position == 0)
        {
            while( mySC.Position == 0 )
            {
                // Debug.Log(mySC.Position);
                mySC.Position = desiredPos;
                yield return null;
            }
        }
    }
Reply


Messages In This Thread
RE: how do I position a splineController on a spline in runtime to an exact position? - by hawken - 01-18-2018, 04:19 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Best way to duplicate a spline with an offset Kapistijn 8 1,363 04-12-2026, 03:18 PM
Last Post: _Aka_
  Play() does not cause SplineController to produce expected behaviour ConCat 8 1,362 02-08-2026, 11:54 AM
Last Post: _Aka_
Smile Constant speed along a spline? tfishell 1 661 11-13-2025, 11:32 AM
Last Post: _Aka_
  SplineController Ignores Follow-Up and Chooses Wrong Spline Josenildo 7 4,464 07-29-2025, 09:15 PM
Last Post: _Aka_

Forum Jump: