Search found 4 matches

by laconix
Mon Feb 08, 2010 7:53 am
Forum: Support and Development
Topic: Heavy newb questions I need to get off my chest..
Replies: 19
Views: 9342

Re: Heavy newb questions I need to get off my chest..

...Not being able to attach files is getting mighty annoying. Get a dropbox account. Quite a handy thing to have, it lets you have a folder and any files in the folder while be synced onto their server. And you can choose which files to share publicly or keep private (I haven't had a need to use it...
by laconix
Sun Feb 07, 2010 11:56 am
Forum: Support and Development
Topic: Please help me with using love.filesystem?
Replies: 17
Views: 7680

Re: Please help me with using love.filesystem?

It works perfectly, remember love.filesystem stores your data in %appdata%/LOVE in windows. When you check there, there will be an 'imgData' folder with your 'img_rawData.txt' file.
by laconix
Sun Feb 07, 2010 9:35 am
Forum: Support and Development
Topic: Heavy newb questions I need to get off my chest..
Replies: 19
Views: 9342

Re: Heavy newb questions I need to get off my chest..

For #1 you could always do: starttime = love.timer.getTime() and check every update: function love.update(dt) if love.time.getTime() - starttime >= tracktime then love.audio.play(nexttrack) starttime = love.timer.getTime() end end Remember getTime() retreives the time in seconds (since the applicati...
by laconix
Fri Feb 05, 2010 11:28 am
Forum: Support and Development
Topic: use mouse to move things around
Replies: 14
Views: 7775

Re: use mouse to move things around

So I'm going to assume 3 things, firstly; you want to click on the thing to move to start dragging and secondly; you want thorough explanations. But lastly and most importantly I assume you know how to adapt my solution to fit your needs. :) Note: Numbers in brackets mean the term is explained at th...