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 Shiro_Rin · Nov 22, 2016 at 08:25 PM · scripting problemuinetworking

UNET error when retrieving matches

 using UnityEngine;
 using UnityEngine.UI;
 using UnityEngine.Networking;
 
 
 
 public class CustomLobby : MonoBehaviour {
     public NetworkManager manager;
 
     public Text roomName;
     public Dropdown lobby;
 
     bool matchMaking;
 
     //
     public void MatchMaking(){
         matchMaking = !matchMaking;
         if (matchMaking) {
             manager.StartMatchMaker ();
         } else {
             manager.StopMatchMaker ();
         }
     }
     //
 
     //
     public void Refresh(){
         lobby.options.Clear ();
         for (int i = 0; i < manager.matches.Count; i++) {
             lobby.options.Add (new Dropdown.OptionData () { text = manager.matches [i].name });
         }
     }
     //
 
     //
     public void CreateMatch(){
         manager.matchName = roomName.text;
         manager.matchMaker.CreateMatch (manager.matchName, manager.matchSize, true, "", "", "", 0, 0, manager.OnMatchCreate);
     }
     public void JoinMatch(){
         manager.matchMaker.JoinMatch(manager.matches[lobby.value].networkId, "", "", "", 0, 0, manager.OnMatchJoined);
     }
     //
 }



This is my UNET script I'm trying to write for multiplayer. Creating works and Joining by finding the first lobby available works, but in my script I have a drop down menu I'm trying to use as a way to select the current lobbies made to join. But everytime I try to refresh the list using the Refresh function I made, I get this error

 NullReferenceException: Object reference not set to an instance of an object
 CustomLobby.Refresh () (at Assets/CustomLobby.cs:31)


I have no Idea why. I tried to see if it was just because no lobbies were made yet, but if I create a match on one window then refresh on a different game window, it still gives this error code. I'm super new to the UNET scripting and I've just been trying to make a new hud. Any help on this is greatly appreciated and if you have any tips please tell!

Comment
Add comment · Show 3
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 christoph_r · Nov 23, 2016 at 01:51 AM 0
Share

At least one of the reference type variables in line 31 is null. $$anonymous$$ake sure to check every variable, e.g. has manager been assigned?

avatar image Shiro_Rin christoph_r · Nov 23, 2016 at 01:58 AM 0
Share

Yes it is assigned which is why it's very strange to me. I've tried to replace manager.matches.Count with an actual number and it will get past that line then throw an error again when trying to add the options to the lobby variable. Create a match works fine so I know my manage is set up

avatar image Shiro_Rin christoph_r · Nov 23, 2016 at 04:51 PM 0
Share

Let me go ahead and say I followed an fps tutorial for unet that I ended up transferring the scripts to my current project. It honestly looks better now than what I was going to do.

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

116 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

Related Questions

Alternative to RPC for destroying objects across a network 0 Answers

Need help In creating android game with UI buttons ?Please Help 1 Answer

How to match UI Image size to UI Text size when using ContentSizeFitter on UI Text? 1 Answer

Editing UIElements Label through code and alignment 1 Answer

How can i scale a ui Panel from the left side only ? 2 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