Type Object does not support slicing Unity3D
- by Vish
I am getting the following error in my code and I can't seem to understand why. Can anyone help me with it?
This is my current code. The line causing the error is marked in a comment near the end.
var rows : int = 4;
var cols : int = 4;
var totalCards : int = cols * rows;
var matchesNeedToWin : int = totalCards * 0.5;
var matchesMade : int = 0;
…