Welcome to the CSC Q&A, on our server named in honor of Ada Lovelace. Write great code! Get help and give help!
It is our choices... that show what we truly are, far more than our abilities.

Categories

+5 votes

Is there a way to make my animation more smooth? Instead of having the illusion of my owls moving smoothly along to the right in the shell, they're flicking up into the shell (I don't know how to better describe it).

Any ideas on how to make it a smoother transition?

asked in CSC201 Spring 2021 by (1 point)

2 Answers

+3 votes

You may just want to decrease the size of the shell window. Aside from that, adding more blank lines before each frame might do it.

answered by (1 point)
+2 votes

Hmm, a bit of flickering is unavoidable, but if you're getting serious flickering that may indicate a problem.

Check to make sure you are doing the steps in the right order:

  1. Print the blank lines.
  2. Print the owls
  3. Pause one second.

If you switch the order if steps 2 and 3 you will get horrible flickering, because mostly you only get to see the blank lines, and the owl text scrolls by too quickly.

answered by (508 points)
...