Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines
A jam submission

FlutterlyView game page

Frantic clicker. Choose and match patterned butterflies before they vanish.
Submitted by abrightmoore (@abrightmoore) — 11 hours, 55 minutes before the deadline
Add to collection

Play game

Flutterly's itch.io page

Results

CriteriaRankScore*Raw Score
Audio#221.7682.500
Humor#231.5032.125
Theme#232.3863.375
Graphics/Art#242.1213.000
Fun#251.5912.250
Mood#252.0332.875
Overall#251.8562.625

Ranked from 8 ratings. Score is adjusted from raw score by the median number of ratings per game in the jam.

Source code repository
https://github.com/abrightmoore/butterflies

Tools used
PyGame - for display and UI. See https://www.pygame.org/
GIMP - for pixel art. See https://www.gimp.org/
Notepad++ - for debugging and logging
Audacity - for audio processing

Leave a comment

Log in with itch.io to leave a comment.

Comments

Submitted(+1)

It's a nice experience, I enjoyed myself for a bit. It's nice just watching them, gathering up new patterns... It has the sort of feel that those old "collect the frog/leapord/whatever" games from '08 had, but more relaxing and way less gimmicky. Very unique!

Submitted(+1)

Nice music and good concept! I like how the patterns are (I assume) procedurally generated. The butterfly movement was a bit to jittery for me. Smoothing out the motion might make the experience more relaxing.

Developer(+1)

If I were to move this past the jam I'd definitely have simpler levels earlier with the complexity building up to jittery fluttering butterflies. I'll keep your feedback in mind - thank you!

Submitted(+1)

Got the game running after fixing my own error.  I have to say it was a quite relaxing experience collecting butterflies.  Also, the butterfly generation made a variety of interesting creations.  Additionally, the music complemented the mood of the game nicely.

Developer(+1)

Thanks for the feedback and apologies on the challenges getting it running!

Submitted

I seem to get an error on Windows 10 with the message:

  File "./main.py", line 645
    iterationCount += 1
                 ^
IndentationError: expected an indented block
Developer

Replied on discord - source looks OK my end and runs ok on Win10 python 2.7.13 for me.

Submitted

Oop, that was an "In Between My Ears Issue". I commented out the print statements trying to make it run in python3, but I completely forgot I made those changes. Sorry about that.

Submitted(+2)

For future reference, there’s a 2to3 program (probably included with your python3 distribution) that can automagically convert a python2 program to python3 (I used that here and it worked fine).

Submitted(+1)

I encountered a few errors:

  • print statements lacked parentheses. running 2to3 -w main.py fixed this.

  • the music file in your itch.io package looks for ABMusic.mp3 but the file is named abmusic.mp3

  • I believe you should call pygame.mixer.init() right after pygame.init() in the initializeDisplay function

Developer

Curious - are you testing on Linux?

Submitted(+1)

Yes, on Linux. Python 3.7 and Pygame 1.9.6