summaryrefslogtreecommitdiff
path: root/futuregael
diff options
context:
space:
mode:
Diffstat (limited to 'futuregael')
-rw-r--r--futuregael/src/show.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/futuregael/src/show.h b/futuregael/src/show.h
index 43e4bad..96804aa 100644
--- a/futuregael/src/show.h
+++ b/futuregael/src/show.h
@@ -271,6 +271,15 @@ public:
ofLog()<<"Show finished!";
}
}
+
+ for (int i=0;i<playline->words.size();i++){
+ for (auto& g:playline->words[i].glyphs){
+ if (ofRandom(100)<1.0) { //speed
+ g.colour=playline->palette[ofRandom(playline->palette.size())];
+ }
+ }
+ }
+
}
}