gd50 icon indicating copy to clipboard operation
gd50 copied to clipboard

Source code for games used in GD50

Results 5 gd50 issues
Sort by recently updated
recently updated
newest added

Example in Bird.lua 23:32 ```lua function Bird:update(dt) self.dy = self.dy + GRAVITY * dt if love.keyboard.wasPressed('space') then self.dy = -5 sounds['jump']:play() end self.y = self.y + self.dy end ``` Each...

love 2d is showing some error screenshot has been attached in this ![image](https://user-images.githubusercontent.com/71192791/93387698-44fe2080-f887-11ea-9c00-9ab226273e9d.png)

In flappy bird player's can make the bird to fly past beyond the upper edge of the screen, so can score points and go on forever without colliding with the...

push.lua is out of date so doesn't work with love 11.x push.lua repo is already updated and works with love2d 11.x so file can simply be replaced https://github.com/Ulydev/push/commit/db9213b78cf01140d73eec47c6e542361115b97d#diff-d95e747898ef40d004fd6dd0ec4a9c84) if you...