Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Control of an object that uses a spline
#5
To finish out the waiting for a single frame, I found this in the Unity forum:

https://forum.unity.com/threads/how-to-w...n-c.24616/

TLDR - Have your coroutine do a "yield return null", which accomplishes the feat without the worry of FPS time.  Indeed, my new method works quite nicely.

Code:
IEnumerator MoveToTop()
{
    yield return null;
    transform.position = new Vector3(960, 1080);
}

Thanks again for your help, I appreciate it.
Reply


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

Possibly Related Threads…
Thread Author Replies Views Last Post
  Best way to duplicate a spline with an offset Kapistijn 8 1,361 04-12-2026, 03:18 PM
Last Post: _Aka_
  Control Point Interpolation Overrides. rickgplus 1 529 12-11-2025, 08:52 AM
Last Post: _Aka_
Smile Constant speed along a spline? tfishell 1 661 11-13-2025, 11:32 AM
Last Post: _Aka_
  Create Game Object Renaming Options rickgplus 1 937 09-23-2025, 09:33 AM
Last Post: _Aka_

Forum Jump: