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
  Removing the objects behind an object alms94 6 5 12-06-2023, 09:31 PM
Last Post: _Aka_
  Curvy discards Input Spline Range VoltDriver 3 3 11-28-2023, 07:14 PM
Last Post: _Aka_
  Guide to custom placing stuff on spline Lupos 15 37 11-27-2023, 12:51 PM
Last Post: _Aka_
  Get spline from generated mesh beartrox 1 2 11-27-2023, 12:30 PM
Last Post: _Aka_

Forum Jump: