Search Issue Tracker
Fixed
Votes
1
Found in
Issue ID
712749
Regression
No
Elo score always 0 in list match results
This issue has no description.
Comments (2)
Add comment
All about bugs
View bugs we have successfully reproduced, and vote for the bugs you want to see fixed most urgently.
Latest issues
- Warning of an unknown Script missing is logged when selecting VFX in Play Mode
- Vertical and horizontal scrollbars appear and disappear when dragging an attribute to a different position within the Shader Graph Hierarchy
- AudioSource.PlayDelayed() does not work with Audio Random Containers
- Compatible with the VFX Graph Shader Graph can't be dragged and dropped into the "Output" block from the Project window
- [Silicon] Freeze/crash on BrotliDecoderDecompressStream when using System.IO.Compression.BrotliDecoder.TryDecompress
mbouffard
Dec 01, 2015 19:39
I still have this issue on Unity 5.2.3f1.
tribio
Jul 18, 2015 13:01
Am I the only one having this problem?
My code:
[code=CSharp]CreateMatchRequest create = new CreateMatchRequest();
create.name = "Tribio Room";
create.size = 4;
create.advertise = true;
create.password = "";
create.eloScore = 3;
matchMaker.CreateMatch(create, OnMatchCreate);[/code]
in the list matches:
[code=CSharp]public void OnMatchList(ListMatchResponse matchListResponse)
{
if (matchListResponse.success)
{
if(matchListResponse.matches.Count > 0)
{
for(int i = 0; i < matchListResponse.matches.Count; i++)
{
Debug.Log(matchListResponse.matches[i].averageEloScore);
...
}[/code]
It's always 0...