Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Control of an object that uses a spline
#3
After some more testing, it appears to operate as suspected... basically, I need to execute my code sometime after the current frame I disable the spline controller.  

So this doesn't work:

Code:
    private void PathEndReached(CurvySplineMoveEventArgs arg0)
    {
        _controller.enabled = false;
        transform.position = new Vector3(960, 1080);
    }

But this does work:

Code:
    private void PathEndReached(CurvySplineMoveEventArgs arg0)
    {
        _controller.enabled = false;
        StartCoroutine("MoveToTop");
    }

    IEnumerator MoveToTop()
    {
        yield return new WaitForSeconds(0.1f);
        transform.position = new Vector3(960, 1080);
    }

That makes sense to me.  If there's a better way to do the above, please let me know.  Thanks again for your help.
Reply


Messages In This Thread
RE: Control of an object that uses a spline - by ricke - 09-15-2021, 12:39 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Spline Spots from 2 samples. BitBlit 8 655 06-30-2026, 11:49 AM
Last Post: _Aka_
  Best way to duplicate a spline with an offset Kapistijn 8 2,068 04-12-2026, 03:18 PM
Last Post: _Aka_
  Control Point Interpolation Overrides. rickgplus 1 739 12-11-2025, 08:52 AM
Last Post: _Aka_
Smile Constant speed along a spline? tfishell 1 867 11-13-2025, 11:32 AM
Last Post: _Aka_

Forum Jump: