You are viewing a single comment's thread from:
RE: Teaching AI to play Flappy Bird - the concept of perceptron | Neural Networks #1
Hi @neavvy, I'm very curious about your code.
I downloaded Processing and installed it in my mackbook, then I ran the code. the window was too big (in my macbook screen)
To get some background in processing, I studied some lessons in funprogramming.org. After that I modified the code by changing the height of the window (690 instead of 1920):
void setup() { size(1080,690); ... }
The window now fits pretty good in my screen, However the birds and pipes are big in comparison with the new window size. I guess I have to resize them too.
Any clue to resize them? :)
BR, Daniel