Search found 3446 matches

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

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: 1038686

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: 16797

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: 1038686

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: 3540

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: 8605

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...