mirror of
https://github.com/MirrorNetworking/Mirror.git
synced 2024-11-18 11:00:32 +00:00
code style
This commit is contained in:
parent
5b9c7e11d5
commit
357ef138c9
@ -151,8 +151,10 @@ void DeserializeFromReader(NetworkReader reader)
|
||||
{
|
||||
// Reader length is checked here, 12 is used as thats the current Vector3 (3 floats) amount.
|
||||
// In rare cases people may do mis-matched builds, log useful warning message, and then do not process missing scale data.
|
||||
if (reader.Length >= 12) { temp.localScale = reader.ReadVector3(); }
|
||||
else { Debug.LogWarning("Reader length does not contain enough data for a scale, please check that both server and client builds syncScale booleans match.", this); }
|
||||
if (reader.Length >= 12)
|
||||
temp.localScale = reader.ReadVector3();
|
||||
else
|
||||
Debug.LogWarning("Reader length does not contain enough data for a scale, please check that both server and client builds syncScale booleans match.", this);
|
||||
}
|
||||
|
||||
// movement speed: based on how far it moved since last time
|
||||
@ -553,11 +555,15 @@ static void DrawLineBetweenDataPoints(DataPoint data1, DataPoint data2, Color co
|
||||
void OnDrawGizmos()
|
||||
{
|
||||
// draw start and goal points
|
||||
if (start != null) DrawDataPointGizmo(start, Color.gray);
|
||||
if (goal != null) DrawDataPointGizmo(goal, Color.white);
|
||||
if (start != null)
|
||||
DrawDataPointGizmo(start, Color.gray);
|
||||
|
||||
if (goal != null)
|
||||
DrawDataPointGizmo(goal, Color.white);
|
||||
|
||||
// draw line between them
|
||||
if (start != null && goal != null) DrawLineBetweenDataPoints(start, goal, Color.cyan);
|
||||
if (start != null && goal != null)
|
||||
DrawLineBetweenDataPoints(start, goal, Color.cyan);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user