We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 122b167 commit c261e78Copy full SHA for c261e78
src/main/java/AboutProcessCene.java
@@ -31,7 +31,7 @@ public void draw(int step) {
31
float caption_y = presentation.textAscent() + presentation.textDescent() + presentation.height/2;
32
presentation.text(caption, (presentation.width - presentation.textWidth(caption))/2, caption_y);
33
34
- float flower_scale = presentation.frameCount % 200;
+ float flower_scale = presentation.frameCount % 400 + 2;
35
presentation.image(flower_image, (presentation.width - flower_image.width) / 2 - flower_scale, caption_y - flower_image.height - 50 - flower_scale, flower_image.width + flower_scale, flower_image.height + flower_scale);
36
37
presentation.image(lucene_logo, (presentation.width/2) - lucene_logo.width - 50,caption_y + 20);
0 commit comments