Search found 3448 matches

by zorg
Fri Jun 20, 2014 10:19 am
Forum: Support and Development
Topic: I don't understand the using of RGB in LOVE
Replies: 6
Views: 4024

Re: I don't understand the using of RGB in LOVE

And of course the background is RGB, instead of RGBA because your background can't be transparent (what would be behind it?) What about "what is behind it.", e.g. the desktop, or another window, or both, or whatever... though i'm sure that there would be some nontrivial (like cross-platfo...
by zorg
Sun Jun 15, 2014 9:07 am
Forum: General
Topic: LOVE users map
Replies: 182
Views: 119955

Re: LOVE users map

Budapest, Hungary :3
by zorg
Fri May 09, 2014 1:23 pm
Forum: General
Topic: Streaming audio from memory
Replies: 11
Views: 8941

Re: Streaming audio from memory

You can get the length of a SoundData object: [wiki]SoundData:getDuration[/wiki], i'm not sure whether you can for Sources or Decoders.
by zorg
Tue Apr 29, 2014 3:04 pm
Forum: General
Topic: Avatars: OBEY!
Replies: 763
Views: 1045736

Re: Avatars: OBEY!

jjmafiae wrote:
zorg wrote:Not really new, but took this long to make an avatar for myself for here
no hints :3
2 hours 52 seconds and 59 minutes
actually, logo was under 10 minutes; and i registered like a year before; not what i was referring to via the guessing text though :3
by zorg
Sat Apr 19, 2014 4:20 pm
Forum: Libraries and Tools
Topic: Lovebird : A browser-based debug console
Replies: 17
Views: 16801

Re: Lovebird : A browser-based debug console

It lagged for me as well, every few seconds; although setting the client timeout to 0 did not do good for me, but setting it to 0.1 did work...
by zorg
Fri Apr 18, 2014 2:47 pm
Forum: General
Topic: Avatars: OBEY!
Replies: 763
Views: 1045736

Re: Avatars: OBEY!

Not really new, but took this long to make an avatar for myself for here
no hints :3
by zorg
Mon Apr 14, 2014 7:25 pm
Forum: Support and Development
Topic: Keeping track of memory used by images
Replies: 4
Views: 3542

Re: Keeping track of memory used by images

And that worked very well also. Not only did it look nice, but it automatically cut that quad out of the main image, and pasted it into a new ImageData, so that each section could be treated like a separate image, as if they all had separate files. Though not your main issue, it might be relevant; ...
by zorg
Mon Apr 14, 2014 6:22 pm
Forum: Support and Development
Topic: Question for tables and variables :3
Replies: 12
Views: 8607

Re: Question for tables and variables :3

i could be wrong, but maybe Volgoza wants this: table.insert(someTable[var], 1) Basically, if you do the dot syntax like you did before, it will interpret that as the string "var", or more visually, as: someTable['var'] -- is the same as: someTable.var Note that this is how it works everyw...