File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -443,7 +443,7 @@ void SetGameObjects()
443
443
444
444
if ( colors_ == 3 )
445
445
{
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 ) ;
447
447
}
448
448
else if ( colors_ == 2 )
449
449
{
@@ -463,7 +463,7 @@ void SetGameObjects()
463
463
walkerClone . GetComponent < LineRenderer > ( ) . widthMultiplier = 0.2f ;
464
464
465
465
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 ) ;
467
467
targetClone . transform . localScale = new Vector3 ( 2 * agents_ [ i ] . radius , 1 , 2 * agents_ [ i ] . radius ) ;
468
468
targetClone . SetActive ( true ) ;
469
469
You can’t perform that action at this time.
0 commit comments