86 — Story: letters arriving one at a time
show puts a whole line on screen at once. When you are telling a story, letters
arriving one at a time read better. say slowly does that.
Steps
Make
story.nme:
run it →say slowly The door opened slowly.The letters arrive one by one. Korean is the same:
run it →천천히 말해줘 문이 천천히 열렸습니다.For something slower still, add
very:
run it →say very slowly Nobody was there.Korean is
아주 천천히 말해줘 아무도 없었습니다.You can set the speed yourself:
run it →say slowly every 0.2 seconds One. Two. Three.Korean is
0.2초씩 천천히 말해줘 하나. 둘. 셋.A story is usually several lines.
waitbetween them lets it breathe:
run it →say slowly The night was late. wait 1 second say slowly Then someone knocked.Mix in a question and a condition, and the reader chooses the story:
run it →say slowly Do you open the door? ask answer yes or no if answer equals yes say slowly Outside, snow was falling. else say slowly The footsteps faded away. end
Try it
Write a three-line story: the first line at normal speed, the middle line slowly, the last line very slowly.
show It was a winter night
say slowly Something moved outside the window.
say very slowly It had waited a very long time.
run it →What you learned
say slowly …sends the letters out one at a time.say very slowly …does the same, slower.say slowly every 0.2 seconds …sets the speed yourself.- Korean is
천천히 말해줘,아주 천천히 말해줘,0.2초씩 천천히 말해줘. wait 1 secondbetween lines lets a story breathe.