Thanks! I hope to get github working; still haven't figured out how to move an existing project to it. Installed both github and Egit for eclipse.
@Lord_Bowserinator (View Post)
Yea the FPS is a big issue right now but I'm pretty sure it's because on particle move it loops through every particle and I should be doing it another way.
@NUCLEAR_FOX (View Post) Seriously Lord Bowserminator? Is my name that hard to remember?
Oh yeah looping through each particle per particle really makes it slower, why do you need to do that?
@Lord_Bowserinator (View Post)
Yes when I typed that... :( I was tired.
I understand. Also there's a n in "Feyman"
Graphics / Graphics2D and a BufferedImage
@Lord_Bowserinator (View Post)
I'll have to end up doing that anyways when painting the window but before I used a List<Particle> and had to loop through each one and check (x, y) points. Changed it to Particle[][] and fps is no longer an issue.
I'd really like to move this on to github and I was able to make a local git respository with Egit (Eclipse) and make commits but can't figure out how to push it to github.
Edit:
First download link added and new image.
Use
$ cd [proyect's directory]
$ git remote add origin http://github.com/Username/RepoName.git
$ git push github master
I've finally got a working git repository made. I also rewrote everything again to make element creation easier and hopefully make things faster; display, game, fps counters are all in different threads.