Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Spline Approximation List
#1
Hi,

I am trying to get a object to slightly travel in front of the main gameobject that I have travelling on the spline.


I am wondering how to get the halfway point between two control points perhaps using the approximation list.
public Vector3 lookAtTarget;
public Vector3[] looktargets;
    public void SwitchtoNextFlightSegment(CurvySplineMoveEventArgs e)
    {
        looktargets = e.ControlPoint.Approximation;
        CurvySplineSegment controlPoint = e.ControlPoint;

                int listposition =  Mathf.RoundToInt((Manager.gamesystem.scPlayer.Position * 1.1f) * looktargets.Length);  //10% more on the list;
                lookAtTarget = looktargets[listposition];
             
               ...
             // look at position in playercontroller
               ...

}

wondering what is the best practice for looking ahead down the spline from current position..  Thanks!
Reply


Messages In This Thread
Spline Approximation List - by skyboard - 07-01-2018, 05:23 PM
RE: Spline Approximation List - by _Aka_ - 07-01-2018, 10:59 PM
RE: Spline Approximation List - by _Aka_ - 07-01-2018, 11:02 PM

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_
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 14 03-04-2024, 11:06 AM
Last Post: _Aka_

Forum Jump: