Skip to content

Commit 66693b1

Browse files
author
Himangshu Saikia
committed
Target color for color = 3
1 parent 03aac43 commit 66693b1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Assets/Scripts/SWCrowd.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -443,7 +443,7 @@ void SetGameObjects()
443443

444444
if (colors_ == 3)
445445
{
446-
walkerClone.GetComponent<LineRenderer>().startColor = Color.HSVToRGB((float)i / numAgents_, 1.0f, 1.0f); ;
446+
walkerClone.GetComponent<LineRenderer>().startColor = Color.HSVToRGB((float)i / numAgents_, 1.0f, 1.0f);
447447
}
448448
else if (colors_ == 2)
449449
{
@@ -463,7 +463,7 @@ void SetGameObjects()
463463
walkerClone.GetComponent<LineRenderer>().widthMultiplier = 0.2f;
464464

465465
GameObject targetClone = Instantiate(targetPrefab_, agents_[i].tar[0], Quaternion.identity);
466-
targetClone.GetComponent<MeshRenderer>().material.color = new Color(agents_[i].r, agents_[i].g, agents_[i].b);
466+
targetClone.GetComponent<MeshRenderer>().material.color = Color.HSVToRGB((float)i / numAgents_, 1.0f, 1.0f);
467467
targetClone.transform.localScale = new Vector3(2 * agents_[i].radius, 1, 2 * agents_[i].radius);
468468
targetClone.SetActive(true);
469469

0 commit comments

Comments
 (0)