Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 12 Next capture
2021 2022 2023
1 capture
12 Jun 22 - 12 Jun 22
sparklines
Close Help
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
  • Asset Store
  • Get Unity

UNITY ACCOUNT

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account
  • Blog
  • Forums
  • Answers
  • Evangelists
  • User Groups
  • Beta Program
  • Advisory Panel

Navigation

  • Home
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
    • Blog
    • Forums
    • Answers
    • Evangelists
    • User Groups
    • Beta Program
    • Advisory Panel

Unity account

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account

Language

  • Chinese
  • Spanish
  • Japanese
  • Korean
  • Portuguese
  • Ask a question
  • Spaces
    • Default
    • Help Room
    • META
    • Moderators
    • Topics
    • Questions
    • Users
    • Badges
  • Home /
  • Help Room /
avatar image
0
Question by HyperSpaceDrifter · Apr 04, 2019 at 09:51 AM · prefabspawn

Multiple spawners in scene are all spawning their item to one instance of spawner

Hey guys, feel I am doing something very foolish and just not realizing it.

I have 8 spawner prefabs in a scene from a default spawner prefab I made. I am using these to spawn a barrel prefab at their transform position, then move the barrel along to an endpoint, which is included in the default prefab, so is the same local distance and direction in all instanced cases. In the case below, an item should appear behind the spawner, slide along the flat section, then stop before the curve, kind of like a conveyor belt.

alt text

When I run the game with a single spawner, I have no issues, but as soon as I add multiple spawners, all items spawn onto a single spawner, but with their inherited orientations. I feel this definitely has something to do with how I am using the prefabs so any advice would be appreciated, but would be interested to know what I am doing wrong none the less.

alt text

 public class CargoSpawner : MonoBehaviour
 {
     public GameObject cargo;
     public Transform endPoint;
 
     void Start()
     {
         SpawnNew();
     }
 
     void SpawnNew()
     {
         Instantiate(cargo,transform.position,transform.rotation);
         cargo.GetComponent<CargoOnSpawn>().SetTransforms(transform, endPoint);
     }
 }

 //adapted from unity doc lerp example
 public class CargoOnSpawn : MonoBehaviour
 {
     private static bool spawned = false;
     private static bool finished = false;
 
     private static Transform startPoint;
     private static Transform endPoint;
 
     public static float speed = 1f;
 
     private static float startTime;
     private static float journeyLength;

     //if spawned correctly, lerp along path and check if at destination, if so, stop
     void Update()
     {
         if (spawned)
         {
             MoveIntoScene();
             if (transform.position == endPoint.position) finished = true;
         }else Debug.Log("Not Spawned");
     }
 
     void MoveIntoScene()
     {
         float distCovered = (Time.time - startTime) * speed;
         float fracJourney = (float)distCovered / (float)journeyLength;
         transform.position = Vector3.Lerp(startPoint.position, endPoint.position, fracJourney);
     }
 
     public void SetTransforms(Transform start, Transform end)
     {
         startPoint = start;
         endPoint = end;
 
         startTime = Time.time;
         journeyLength = Vector3.Distance(startPoint.position, endPoint.position);
 
         spawned = true;
     }
 }


spawner.png (154.8 kB)
spawnpoint.png (151.3 kB)
Comment
Add comment
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

0 Replies

· Add your reply
  • Sort: 

Your answer

Hint: You can notify a user about this post by typing @username

Up to 2 attachments (including images) can be used with a maximum of 524.3 kB each and 1.0 MB total.

Follow this Question

Answers Answers and Comments

197 People are following this question.

avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image

Related Questions

Spawn Prefab on double touch 2 Answers

Change serialize field input 0 Answers

Instantiate isnt working for spawner class 1 Answer

How can i define a costume function for an object in a prefub that I spawn? 1 Answer

Instantiate PreFab on trigger location 0 Answers


Enterprise
Social Q&A

Social
Subscribe on YouTube social-youtube Follow on LinkedIn social-linkedin Follow on Twitter social-twitter Follow on Facebook social-facebook Follow on Instagram social-instagram

Footer

  • Purchase
    • Products
    • Subscription
    • Asset Store
    • Unity Gear
    • Resellers
  • Education
    • Students
    • Educators
    • Certification
    • Learn
    • Center of Excellence
  • Download
    • Unity
    • Beta Program
  • Unity Labs
    • Labs
    • Publications
  • Resources
    • Learn platform
    • Community
    • Documentation
    • Unity QA
    • FAQ
    • Services Status
    • Connect
  • About Unity
    • About Us
    • Blog
    • Events
    • Careers
    • Contact
    • Press
    • Partners
    • Affiliates
    • Security
Copyright © 2020 Unity Technologies
  • Legal
  • Privacy Policy
  • Cookies
  • Do Not Sell My Personal Information
  • Cookies Settings
"Unity", Unity logos, and other Unity trademarks are trademarks or registered trademarks of Unity Technologies or its affiliates in the U.S. and elsewhere (more info here). Other names or brands are trademarks of their respective owners.
  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • Default
  • Help Room
  • META
  • Moderators
  • Explore
  • Topics
  • Questions
  • Users
  • Badges