Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Set random spline to object
#1
Hi!!!
I have several splines in my scene and prefabs of my GameObjects with FollowSpline script attach on them.  All i want is to instantiate my object(randomly) once per second on start position one of this splines(randomly), run on it and delete when it comes to the end of this spline.
I have GameManager script with two arrays of spline and objects:

public class CarsManager : MonoBehaviour
    {
        public MyFollowSpline myFollowSpline;
        public float spawnTime = 3f;       
        public GameObject carItems;
        public CurvySpline splinesToFollow;
    
        void Start ()
        {
            InvokeRepeating ("Spawn"spawnTimespawnTime);
        }
    
        void Spawn ()
        {
            int spawnSplineIndex = Random.Range (0splinesToFollow.Length);
            int spawnCarIndex = Random.Range (0carItems.Length);
            CurvySpline mySpline = splinesToFollow [spawnSplineIndex];
            .......?

        }
    }
The question is how to instantiate GameObject and attach to it one of this spline in my Spawn method? And how to delete GameObject when it comes to the end of the spline(i think this method has to be in FollowSpline script)?

 

 
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Best way to duplicate a spline with an offset Kapistijn 8 1,085 04-12-2026, 03:18 PM
Last Post: _Aka_
Smile Constant speed along a spline? tfishell 1 604 11-13-2025, 11:32 AM
Last Post: _Aka_
  Create Game Object Renaming Options rickgplus 1 881 09-23-2025, 09:33 AM
Last Post: _Aka_
  SplineController Ignores Follow-Up and Chooses Wrong Spline Josenildo 7 4,298 07-29-2025, 09:15 PM
Last Post: _Aka_

Forum Jump: