Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 13 Next capture
2021 2022 2023
1 capture
13 Jun 22 - 13 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 Tioanbeast · May 28, 2012 at 02:20 PM · javascriptnetworkinginstantiateplayer

how can I present a choice under function OnNetworkLoadedLevel

So I wanted to use the networking script so that when your connected you can choose between two types of ships,and they spawn at the empty object attached to it. first I thought of GUI buttons but they don't work unless your under OnGUI. I also tried Inputs but I guess that doesn't work. I'm a beginner at coding so don't tell me anything really confusing. thanks in advance

this is what I have right now:

  var Player : Transform;
     var Player2 : Transform;
         function OnNetworkLoadedLevel ()
         {        
             if( Input.GetKey( KeyCode.Q ) ) {
                     Network.Instantiate(Player, transform.position, transform.rotation, 0);
                 }// Instantiate object to the network in the position of Spawn
                 if( Input.GetKey( KeyCode.E ) ) {
             Network.Instantiate(Player2, transform.position, transform.rotation, 0);
             }
         }
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

2 Replies

· Add your reply
  • Sort: 
avatar image
0

Answer by whydoidoit · May 28, 2012 at 03:42 PM

You can't wait for something like that - I think that's your problem. OnNetworkLoadedLevel isn't going to wait for user input.

Your best bet is to have a "state" when the level is loaded that shows a choice using an OnGUI - when the player has chosen (by clicking a button I guess) you would instantiate the ship and hide the OnGUI.

  var chosenShip = false;

   function OnGUI() {
        if(chosenShip)
              return;
         if(GUILayout.Button("Ship1")) {
                 //Instantiate the ship
               chosenShip = true;
         }
         //Other buttons etc
    }

You would attach this script to some empty game object that is loaded with the scene.

Now bear in mind you might want enemies etc waiting until that ship is chosen too. You need an easy way to know if the game is ready:

In that case you can do this:

    public static var chosenShip : boolean;

   function Start() {

       chosenShip = false;
 
   }

  function OnGUI() {
        if(chosenShip)
              return;
         if(GUILayout.Button("Ship1")) {
                 //Instantiate the ship
               chosenShip = true;
         }
         //Other buttons etc.
    }

Let's say the script is called ChooseShip - you can now get anything to check whether it is chosen by doing

   if(ChooseShip.chosenShip) 
      //Do something
   else
      //Do something different
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
avatar image
0

Answer by Tioanbeast · May 28, 2012 at 04:13 PM

thanks for the help.

Comment
Add comment · Show 1 · 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
avatar image whydoidoit · May 28, 2012 at 04:14 PM 0
Share

No problem! Please mark the question as answered if your happy with it. It get's it off the list of unanswered questions that a lot of us use to find things to help with.

Also put things like you comment above as a comment otherwise it confuses people because it's currently listed as an answer :)

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

5 People are following this question.

avatar image avatar image avatar image avatar image avatar image

Related Questions

Simple code is not recognizing tag anymore. 0 Answers

Multiplayer Problems 0 Answers

Instantiated object from client player not moving when spawned. How can I fix this? 0 Answers

Player Spawning Network issue 1 Answer

Big Delay in Networking 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