The Running Game was a game I programmed in Unity with the simple of goal of getting from point A to point B. Along the way however the various cubes that make up the floor of the room would randomly pop up and then turn red, while the cubes were red they had the chance of disappearing right away or a little later. These disappearances were random and different every play through. There was over 200 cubes being controlled by just a few lines of code that looked for the cube objects tagged as cubes then compiling them into an array, after the array was formed another few lines of code gave way to choosing a cube and moving it up and then turning it red. If the lines of the code that handled the picking of the cube chose a cube that was red or otherwise at the max height it destroyed it. Below is a small video along with the scripts used in the project. The entire project was done with a combination of C# and Javascript.
CubeMove – Test Script for moving the cubes manually.
Win-Orig – Handled most if not all of the games systems, including the automatic moving of the cubes.