Commit 6c06f451 by Eko Simanjuntak

delete .vs

parents 96bf9b33 7b64da72
*/.vs
/.vs
/Library
/Temp
\ No newline at end of file
/Temp
.vs
\ No newline at end of file
This source diff could not be displayed because it is too large. You can view the blob instead.
......@@ -8,7 +8,6 @@ public class BackgroundChanger : MonoBehaviour {
private List<GameObject> obstacleGroup = new List<GameObject>();
private GameObject[] gameObjectGroup;
private GameObject background;
private GameObject obstacle;
private string[] colors = {"Blue", "Green" };
public void Start()
......@@ -31,8 +30,11 @@ public class BackgroundChanger : MonoBehaviour {
{
foreach(string color in colors)
{
obstacle = GameObject.FindWithTag(color + "Obstacle");
obstacleGroup.Add(obstacle);
gameObjectGroup = GameObject.FindGameObjectsWithTag(color + "Obstacle");
foreach(GameObject obstacle in gameObjectGroup)
{
obstacleGroup.Add(obstacle);
}
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment