Skip to content

Commit

Permalink
Readme
Browse files Browse the repository at this point in the history
  • Loading branch information
jashmenn committed Jun 3, 2014
1 parent 733d3eb commit 23e4224
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
5 changes: 0 additions & 5 deletions FlappyBird/GameScene.swift
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ class GameScene: SKScene {
var resetGroundSprite = SKAction.moveByX(groundTexture.size().width * 2.0, y: 0, duration: 0.0)
var moveGroundSpritesForever = SKAction.repeatActionForever(SKAction.sequence([moveGroundSprite,resetGroundSprite]))


for var i = 0; Float(i) < 2.0 + self.frame.size.width / ( groundTexture.size().width * 2.0 ); ++i {
var sprite = SKSpriteNode(texture: groundTexture)
sprite.setScale(2.0)
Expand Down Expand Up @@ -130,10 +129,6 @@ class GameScene: SKScene {
pipePair.addChild(pipeUp)

pipePair.runAction(movePipesAndRemove);

// var movePipes = SKAction.repeatActionForever(SKAction.moveByX(-1, y: 0, duration: 0.02))
// pipePair.runAction(movePipes)

self.addChild(pipePair)
}

Expand Down
8 changes: 8 additions & 0 deletions FlappyBird/README.mkd
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# FlappySwift

An implementation of Flappy Bird in Swift for iOS 8.


# Authors

Nate Murray <[email protected]>

0 comments on commit 23e4224

Please sign in to comment.