Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Changing speed in splineController.cs
#1
hi there,

How would i go about changing the speed variable in splineController.cs?


I'm wanting to make it that it can be changed globally from any other script. In the past i've done something similar to this:


Code:
public static float speed = 5;

But with the splineController code, I'm not sure what i need to do.



Any suggestions?



Thanks
Reply
#2
First you need to include the namespace:

Code:
using FluffyUnderware.Curvy.Controllers;

Then you can reference the Splinecontroller you want to access, like:

Code:
public SplineController xy;

Then you can access its values. For speed it is:

Code:
xy.Speed = 5;
Reply
#3
Ah you're wonderful! Thanks so much for this great tool and prompt support. Can't wait to try it out later tonight!
Reply
#4
So I'm just trying the above out now, the namespace line and reference seem to link in but the xy. Speed shows an error...

NullReferenceException: object reference not set to an instance of an object HitCollision.Start()...

What could I be doing wrong?

Thanks again ?
Reply
#5
Please post your code.
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
Bug Changing spline connection in inspector causes splines to revert to defaults lacota 3 6 03-18-2024, 07:55 PM
Last Post: _Aka_
  Changing Lanes Antonio 1 11 09-17-2023, 08:23 PM
Last Post: _Aka_
  Changing material of Volume spot at creation? _RicO 5 11 08-11-2023, 09:39 AM
Last Post: _Aka_
  Changing range affects generated mesh GameJazz 10 33 12-15-2022, 08:28 AM
Last Post: GameJazz

Forum Jump: