Search found 2 matches

by qwitwa
Fri Jun 02, 2017 11:56 am
Forum: Support and Development
Topic: Help me understand love.math.noise usage properly...
Replies: 15
Views: 9760

Re: Help me understand love.math.noise usage properly...

I don't quite understand how the FFI stuff works, but it seems like love.math.noise is defined here , to reference some functions somewhere defined in C++. In the libraries part of the love codebase, you can find a folder called noise1234, which holds these files , which contain a 4 dimensional perl...
by qwitwa
Sun Nov 16, 2014 5:25 am
Forum: Support and Development
Topic: Need a script like flappy birds. (Read Please)
Replies: 5
Views: 5294

Re: Need a script like flappy birds. (Read Please)

Here's a flappy bird game in one file, although it sounds like you guys are just interested in the scrolling. function love.load() player = { width = 10, height = 10, x = 70, y = 70, vy = 0, vx = 0 } timer = 0 gravity = 1300 max_upwards_velocity = -gravity/2 pipes = {} gap_size = 100 pipe_width = 40...