Hey everyone. Im trying to find a Tetris project sample that works in Unity 5.2.0f3 (64-bit). And I can find none that work anymore
This one gets close, http://coffeebreakcodes.com/complete-projects/2d-tetris-game-tutorial-unity3d/#comment-590
Premade http://coffeebreakcodes.com/wp-content/uploads/2015/03/TetrisSourceFiles.zip
I got the files that differ from what he wrote though. But when run with the boxes.cs attached to all prefabs it wont draw anything when run.
If just running the Spawnbox script on the empty game object. It randomly spawns the block fine but cannot move anything. If I delete the destroy line, it just keeps cycling the block in place, but you can see
void Start () { if (!isValidPosition()) { Application.LoadLevel(0); Destroy(gameObject);
Ive also tried these projects, but the scripts dont compile anymore. http://noobtuts.com/unity/2d-tetris-game
Anyone have this problem?