Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Unity Crash on Curvy Default Event Handler
#2
Will be fixed in 2.0.5, until that edit CurvyDefaultEventHandler.cs and replace/update the below method:

Code:
public static void UseFollowUpStatic(CurvySplineMoveEventArgs e)
       {
           // we need a SplineController as well as a following spline to work with
           if (e.Sender is SplineController && e.ControlPoint.FollowUp)
           {
               var me = e.ControlPoint;
               // Follow the connected spline
               e.Follow(e.ControlPoint.FollowUp, e.ControlPoint.FollowUpHeading);
               // Set the controller to use the new spline
               SplineController controller = (SplineController)e.Sender;
               controller.Spline = e.Spline;
               controller.RelativePosition = e.TF;
               // Handle controller events for the new passed ControlPoint
               if (me.FollowUp && me.FollowUp.FollowUp!=me)
                   controller.OnControlPointReached.Invoke(e);
           }
       }
Reply


Messages In This Thread
RE: Unity Crash on Curvy Default Event Handler - by Jake - 01-03-2016, 01:15 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
Information New free asset: Converter For Unity Splines _Aka_ 5 18 04-25-2024, 11:11 AM
Last Post: _Aka_
  Curvy Line Renderer for UI Spline? gekido 3 6 04-04-2024, 12:56 PM
Last Post: _Aka_
  8.8.0 is live, and it improves Curvy Generator greatly _Aka_ 1 10 04-03-2024, 03:16 PM
Last Post: _Aka_
  snap to the curve created by the curvy splines segment points ShiroeYamamoto 3 11 04-02-2024, 02:24 PM
Last Post: _Aka_

Forum Jump: