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 5 12 10-29-2024, 10:19 AM
Last Post: _Aka_
  Bug: Save Generator Outputs still saves outputs if object is disabled curvymesher 1 3 08-30-2024, 09:19 AM
Last Post: _Aka_
  Player move with object mcarman 4 8 07-29-2024, 06:49 PM
Last Post: mcarman
  Nested Spline Volume Spot Instantiation merobbins5 3 7 07-26-2024, 09:58 AM
Last Post: _Aka_

Forum Jump: