i added this script to move all the blocks i my editor to another location, but unity now gives me the beachball of death like it its stcuk in a loop. what happened?
function Update () {
var septoggle = Input.GetAxis("separate");
if (septoggle != 1) {
for (var voxel : GameObject in voxelArray){ //iterates through objects in voxelArray
var voxelLoc = voxel.GetComponent(voxelScript);//gets voxel origin location
voxel.transform.position = Vector3(voxelLoc.x, voxelLoc.y * sep * septoggle, voxelLoc.z);
}
}
}
↧