fiddle with constants in typewriter example

This commit is contained in:
faiface 2017-05-24 00:01:33 +02:00
parent 5701a9ece4
commit baaa39d463
1 changed files with 3 additions and 1 deletions

View File

@ -1,6 +1,7 @@
package main package main
import ( import (
"fmt"
"image/color" "image/color"
"math" "math"
"math/rand" "math/rand"
@ -120,7 +121,7 @@ func (tw *typewriter) Draw(t pixel.Target, m pixel.Matrix) {
func typeRune(tw *typewriter, r rune) { func typeRune(tw *typewriter, r rune) {
tw.Ribbon(r) tw.Ribbon(r)
if !unicode.IsSpace(r) { if !unicode.IsSpace(r) {
go shake(tw, 3, 30) go shake(tw, 3, 17)
} }
} }
@ -149,6 +150,7 @@ func shake(tw *typewriter, intensity, friction float64) {
intensity -= friction * dt intensity -= friction * dt
tw.Offset(off) tw.Offset(off)
fmt.Println(off)
} }
} }