I get the error cannot convert game object to gameobject with the following code. I am just trying to fill a game object array with game objects…whats up with that?
var draggables : GameObject[];
for (x=0;x<4;x++)
{
draggables[x] = GameObject.FindGameObjectsWithTag ("isClickableGui");
}