Skip to content

Commit

Permalink
Girl Genius Clank - tweak animations
Browse files Browse the repository at this point in the history
  • Loading branch information
scichelli committed Nov 3, 2015
1 parent e79571f commit 828fe37
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions GirlGeniusClank/GirlGeniusClank.ino
Expand Up @@ -16,7 +16,7 @@ const int quick = 100;
const int medium = 600;
const int slow = 2000;
//positions
int center = 70;
int center = 50;
int range = 15;
int top = center + range;
int bottom = center - range;
Expand Down Expand Up @@ -145,7 +145,7 @@ void goQuiet()
{
i = 0;
state = QUIET;
interval = random(1, 5) * 1000;
interval = random(1, 5) * 600;
}

void move(int positions[])
Expand All @@ -155,4 +155,4 @@ void move(int positions[])
interval = positions[i+1];
i += 2;
}


0 comments on commit 828fe37

Please sign in to comment.