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
  Curvy Line Renderer for UI Spline? gekido 3 6 04-04-2024, 12:56 PM
Last Post: _Aka_
  Get position of all control points for a spline gekido 1 6 03-28-2024, 10:08 PM
Last Post: _Aka_
Bug Changing spline connection in inspector causes splines to revert to defaults lacota 3 6 03-18-2024, 07:55 PM
Last Post: _Aka_
  GO can't fit end of the spline GameDeveloperek4123 3 14 03-04-2024, 11:06 AM
Last Post: _Aka_

Forum Jump: