Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Assign Input Spline Path to Generator at Runtime?
#1
Hi there,

I am attempting to instantiate a Curvy Generator at runtime and assign an existing Spline in the scene as the Input Spline Path.  I'm having tremendous trouble  making this happen.  Once the Generator is instantiated from a prefab, it's child object "Input Spline Path" asks me to create or assign a spline.  This is where I get stuck.  I can't figure out how to do this, and I've tried everything!  Please advise.  I've attached a screenshot as well.  

Thanks so much!

Michael

   
Reply
#2
Hey Jake... any tips on this?
Reply
#3
InputSplinePath has a Spline property you can set at runtime:

Code:
var isp = MyCG.GetModule<InputSplinePath>("InputSplinePath",true); // or get reference to module component otherwise
isp.Spline=mySpline;
Reply
#4
This code fragment isn't working in Unity 2017.1.0f3. GetModule returns null even though it does exist in the scene.
Reply
#5
Have a look into the 51_InfiniteTrack example. The InfiniteTrack script does the same you want, but it stores the reference to the input module on creation. The only reason for GetModule to fail I see is that the module name is wrong.

Does FindModules<InputSplinePath>(true) return something?
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  How to merge intersecting meshes at spline connections? Reign_of_Light 2 3 03-20-2023, 08:36 AM
Last Post: Reign_of_Light
Video Spline Gizmos & Segments Invisible while Drawing ricke 7 14 03-13-2023, 05:31 PM
Last Post: _Aka_
  Custom Spots Filter Generator Module mercior 3 8 03-10-2023, 10:20 AM
Last Post: _Aka_
  How to fill a closed spline with mesh FanManPro 6 6 02-25-2023, 09:44 AM
Last Post: _Aka_

Forum Jump: