Search found 113 matches

by Vimm
Fri Apr 08, 2016 1:09 am
Forum: Support and Development
Topic: Anyone need help with small projects?
Replies: 19
Views: 9063

Re: Anyone need help with small projects?

You could always try to see how Code Doodles work and try to make your own, will get you experience and feedback from others how to improve your code. Oh that looks really neat :o I'll probably end up doing some doodles myself! Just wondering - what kind of computer do you have exactly? You should ...
by Vimm
Thu Apr 07, 2016 5:56 pm
Forum: Support and Development
Topic: Anyone need help with small projects?
Replies: 19
Views: 9063

Anyone need help with small projects?

So my computer doesnt run very well, and as a result I can't run anything I make in lua or love for more than a few seconds. This makes it really hard to learn how to make games. So I decided that instead of trying to make my own things, I'd learn by helping people with small projects and what not, ...
by Vimm
Wed Apr 06, 2016 9:09 pm
Forum: Support and Development
Topic: Keep love window on top?
Replies: 3
Views: 1792

Re: Keep love window on top?

Is there a way to keep the love game window on top of other windows regardless of it's focus? Thanks! I'm not 100% sure on this but maybe try having a function that checks if the window is visible and if it isn't make it visible. Sometime like function love.load() visible = love.window.isVisible() ...
by Vimm
Wed Mar 30, 2016 5:55 pm
Forum: Support and Development
Topic: Rotating rectangles
Replies: 8
Views: 7966

Re: Rotating rectangles

You need to learn how transforms work. rotate rotates around the point (0, 0), if you want to rotate a rectangle art (x,y) around its center you need to do: love.graphics.translate(x, y) -- move relative (0,0) to (x,y) love.graphics.rotate(angle) -- rotate coordinate system around relative (0,0) (a...
by Vimm
Wed Mar 30, 2016 4:01 pm
Forum: Support and Development
Topic: Rotating rectangles
Replies: 8
Views: 7966

Rotating rectangles

I need the rectangles that spawn in my game to rotate as they move, so I made an angle variable and put love.graphics.rotate(angle) in my draw function just above the rectangle spawning for loop, then i put angle = angle + dt * math.pi/2 angle = angle % (2*math.pi) in my update function, like the lo...
by Vimm
Mon Mar 28, 2016 5:48 pm
Forum: Support and Development
Topic: Images turn into white squares after time
Replies: 26
Views: 11090

Re: Images turn into white squares after time

Pretty sure its this That one doesn't show asteroids, just a plane. I assume it's happening with the plane too? Could you please try with this image and report back? It doesnt matter what image I put, it still happens. Happens with that picture, happens with the asteroid picture, and happens with i...
by Vimm
Mon Mar 28, 2016 3:20 am
Forum: Support and Development
Topic: Images turn into white squares after time
Replies: 26
Views: 11090

Re: Images turn into white squares after time

pgimeno wrote:Can you post your current code again?
Pretty sure its this
by Vimm
Mon Mar 28, 2016 12:25 am
Forum: Support and Development
Topic: Images turn into white squares after time
Replies: 26
Views: 11090

Re: Images turn into white squares after time

In this case I would suggest to use a driver removal tool like DDU (Display Driver Uninstaller) . It helps you to fully deinstall every single file of your current gpu driver. Sometimes it can happen that outdated driver files try to work with newer ones which can result in glitches or crashs. Afte...
by Vimm
Sun Mar 27, 2016 6:13 pm
Forum: Support and Development
Topic: Images turn into white squares after time
Replies: 26
Views: 11090

Re: Images turn into white squares after time

In this case I would suggest to use a driver removal tool like DDU (Display Driver Uninstaller) . It helps you to fully deinstall every single file of your current gpu driver. Sometimes it can happen that outdated driver files try to work with newer ones which can result in glitches or crashs. Afte...
by Vimm
Sat Mar 26, 2016 9:29 pm
Forum: Support and Development
Topic: Images turn into white squares after time
Replies: 26
Views: 11090

Re: Images turn into white squares after time

Alright. What about other OpenGL based games on your system (e.g Minecraft), do they work as intended? What about other games? Do you have graphical glitches in most of them? Because if the problem is a damaged GPU you should notice more problems like that. If not then it's more likely that there i...