Make nycan cat move back- and forwards.

Moves nan cat till the end of the Touch Bar, then reverses the direction.
This commit is contained in:
Sven Titgemeyer 2018-09-22 19:38:46 +02:00 committed by GitHub
parent b4d2ac444f
commit 22ecae87e5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -47,9 +47,13 @@ class NyanCatCanvas: NSImageView {
}
var direction: CGFloat = 1
@objc public func moveNyancat() {
if (xPosition < 0) {
xPosition += 1
xPosition += direction
if xPosition > 0 {
direction = -1
} else if xPosition < -680 {
direction = 1
}
}