Revize 5b50fe1a
Přidáno uživatelem Oto Šťáva před téměř 4 roky(ů)
deltarobot-vr/Assets/DeltaRobotVr/Components/StatusDisplay.cs | ||
---|---|---|
25 | 25 |
} |
26 | 26 |
else |
27 | 27 |
{ |
28 |
if (Client.Instance.EotMsg.Length == 0)
|
|
28 |
if (Client.Instance.EotReason.Length == 0)
|
|
29 | 29 |
{ |
30 | 30 |
_textComp.text = STATUS + CONNECTING; |
31 | 31 |
} |
32 | 32 |
else |
33 | 33 |
{ |
34 |
_textComp.text = STATUS + CONNECTING + "\n" + Client.Instance.EotMsg;
|
|
34 |
_textComp.text = STATUS + CONNECTING + "\n" + Client.Instance.EotReason;
|
|
35 | 35 |
} |
36 | 36 |
} |
37 | 37 |
} |
Také k dispozici: Unified diff
Re #8906 - Client refactor + doc comments (2)