no one can help me?
Search found 3 matches
- Tue Jan 03, 2012 11:31 am
- Forum: Support and Development
- Topic: Manipulating an Image or something
- Replies: 3
- Views: 2077
- Sun Jan 01, 2012 8:50 pm
- Forum: Support and Development
- Topic: Move item from one table to another properly?
- Replies: 6
- Views: 1971
Re: Move item from one table to another properly?
I dunno if this is what you want, but I think you can transfer all (key, value) pairs from one table to another doing this (at least is scalable): table1 = { key = 'value', --string key [2] = 123, -- number key -- etc } table2 = {} for key,value in pairs(table1) do table2[key] = value end table1 = {...
- Sun Jan 01, 2012 6:46 pm
- Forum: Support and Development
- Topic: Manipulating an Image or something
- Replies: 3
- Views: 2077
Manipulating an Image or something
Hello, Lovers! It is possible to draw using, for example, primitives (like quad, line and circle) directly into an Image (maybe an ImageData and converting it to an Image after)? Or the only way to draw not into screen is via framebuffer (using framebuffer:renderTo)? Sorry for the creepy english! I'...