Skip to content

Instantly share code, notes, and snippets.

@reiji1020
Last active December 12, 2015 01:08
Show Gist options
  • Save reiji1020/4688728 to your computer and use it in GitHub Desktop.
Save reiji1020/4688728 to your computer and use it in GitHub Desktop.
#pragma strict
var Cube:GameObject;
function Start () {
for(var i=0;i<100;i++){
for(var j=0;j<100;j++){
Instantiate(Cube, Vector3(i,0,j), Quaternion.identity);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment