PySlither / Slither

A Python module for bridging Scratch and Python
http://pyslither.github.io/
MIT License
14 stars 6 forks source link

Speech Bubbles #87

Open BookOwl opened 8 years ago

BookOwl commented 8 years ago

These are kind of important. :P

skistaddy commented 8 years ago

Are we going to use speech bubbles or just text?

BookOwl commented 8 years ago

I think that we need to add the actual bubbles.

skistaddy commented 8 years ago

So how will you implement the speech bubbles?

Tymewalk commented 8 years ago

@bjskistad Draw both ends of the bubble, then add midsegments in-between for wider text?

Tymewalk commented 8 years ago

Expanding on that, we'd have a minimum width for speech bubbles, so we'd know how big to make the ends.

If we used SVGs for speech bubbles we could render those and scale them as needed (the minimum width being scaled based on window size).

skistaddy commented 8 years ago

True, but drawing both ends of the bubble and then adding the midsegments, as mentioned above, would require some form of pen, correct?

Tymewalk commented 8 years ago

@bjskistad No, we would blit them to the screen without pen, although that does sound like a good idea.

skistaddy commented 8 years ago

@Tymewalk K.