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 /
avatar image
0
Question by pshwdface · Apr 18, 2019 at 11:35 AM · photonspawnpoint

Pun Spawn Point

I'm making a game with PUN. But when I leave the game and come back Created at the opponent's spawn point. I am It has appeared at the spawn point of the number of players of two spawn points. For example, if the number of players is 1, it is created at spawn point 1. How can I make the spawn point exactly?

Comment
Add comment · Show 1
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
avatar image Captain_Pineapple · Apr 18, 2019 at 10:29 PM 0
Share

Hey there, it might help if you add some code of your current setup so that we may see what you are currently doing. In general your problem is a known problem. One way to solve this might be to save a dicitonary of key value pairs containing the players name and a spawnpoint. This way you can check on joining a game if you have already been there and reuse the last spawnpoint. This way you can also check if spawns have already been used by someone else. $$anonymous$$eep in $$anonymous$$d that this is difficult to implement when you allow the masterclient to change.

1 Reply

· Add your reply
  • Sort: 
avatar image
0

Answer by BenBonkGames · Apr 18, 2019 at 11:31 PM

Hello, I am not totally sure if I understand exactly what you are asking but you can always make a simple spawn point like so,

 public class Spawn: MonoBehaviour {
 
 public GameObject spawnpointLocation;
 //remember to assign in inspector
 
 void OnTriggerEnter2d()     //can be whatever you want.
 {
    Instantiate(gameObject, transform.position.spawnpointLocation, Quaternion.identity)
 }
 }

However, if you want to set spawn points based on how many players you can maybe do something like this,

 public class Spawn : MonoBehaviour {
 
 void Start()
 {
      if(GameObject.FindGameObjectsWithTag("Player").Length = 2)
      {
       //Spawn somewhere
      }
 
      if else(GameObject.FindGameObjectsWithTag("Player").Length = 1)
      {
       //spawn somewhere
      } 
 } 
 }
 



This may be totally wrong or not what you are looking for, but I hope I can help.

Comment
Add comment · Share
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

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

109 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

Related Questions

communication ovedr http 0 Answers

photon marco polo tutorial issue with "peercreated" 1 Answer

Photon username script 0 Answers

Rigidbody lag in Photon Cloud Networking. 1 Answer

How to create multyplayer npc? Tips? 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