Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Spawn object on Curvy Spline.
#1
Hello everyone,
I want to spawn object on Curvy Spline at position that I click on it. For example, I click on the third Cache Point of Spline, it will spawn an Sphere at this point, then Sphere can Play on spline.
Thanks and Regards,
Reply
#2
Hi,
You wan to to do that in play-mode or edit-mode?
Available for freelance work, feel free to reach out: toolbuddy.net
Please consider leaving a review for Curvy, this helps immensely. Thank you.
Reply
#3
Basically, her is how to do it:
  1. Get the direction of the ray representing your click. See Unity's API for that
  2. Get the nearest point on the spline from your ray, more on that at the bottom of this post
  3. Get the TF of that nearest point. If you ask what is TF: https://curvyeditor.com/documentation/sp...tart#units
  4. Create your controller and set its relative position to that TF
About step 2, right now there is no methods in Curvy Spline to get the nearest point from a spline. But you can find those methods in the link bellow. It is not yet part of the official Curvy Splines release:
https://www.dropbox.com/sh/8k5uwhirs13qq...J0nja?dl=0
Please do not use the files from dropbox to replace your own Curvy Spline files (files of the same name in the Curvy folder), since the drop box files are based on an old Curvy Splines version. Just copy the GetNearestPointTF and GetNearestPointF methods that accepts a ray as a parameter, such as:
public float GetNearestPointTF(Ray ray)
public float GetNearestPointTF(Ray ray, out Vector3 nearest)
etc

Was my answer clear?
Have a nice day
Available for freelance work, feel free to reach out: toolbuddy.net
Please consider leaving a review for Curvy, this helps immensely. Thank you.
Reply
#4
And if it helps, here is the scene I tested the code with


Attached Files
.zip   NearestRay.zip (Size: 5.23 KB / Downloads: 4)
Available for freelance work, feel free to reach out: toolbuddy.net
Please consider leaving a review for Curvy, this helps immensely. Thank you.
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
Smile Constant speed along a spline? tfishell 1 318 11-13-2025, 11:32 AM
Last Post: _Aka_
  Create Game Object Renaming Options rickgplus 1 638 09-23-2025, 09:33 AM
Last Post: _Aka_
  SplineController Ignores Follow-Up and Chooses Wrong Spline Josenildo 7 3,683 07-29-2025, 09:15 PM
Last Post: _Aka_
  Curvy Line Renderer for UI Spline? gekido 7 5,156 07-13-2025, 07:11 PM
Last Post: _Aka_

Forum Jump: