Search found 47 matches
- Wed Jun 15, 2016 2:25 pm
- Forum: Support and Development
- Topic: About visit the 2-D Arrays
- Replies: 4
- Views: 5274
Re: About visit the 2-D Arrays
thks very much.very clearly explanation.
- Wed Jun 15, 2016 2:13 pm
- Forum: Support and Development
- Topic: About visit the 2-D Arrays
- Replies: 4
- Views: 5274
About visit the 2-D Arrays
MAP={} testmap={} for i=1,10 do MAP[i]={} testmap[i]=1 for j = 1,10 do MAP[i][j]=0 end print(testmap[0]) --return nil print(MAP[0][1]) --attempt to index a nil value,why? end I created a 1-D arrays testmap and a 2-D Arrays MAP, why I can visit the testmap[0], but I can't visit the MAP[0][1]? the re...
- Thu Jan 02, 2014 12:44 pm
- Forum: General
- Topic: Although the Love.graphics.setColorMode had cancel from 0.90
- Replies: 3
- Views: 3752
Re: Although the Love.graphics.setColorMode had cancel from
OK,thank you.
It seem be complex
It seem be complex
- Wed Jan 01, 2014 1:27 pm
- Forum: General
- Topic: Mouse Wheel Down/Up does not available in the love.mouserele
- Replies: 1
- Views: 3360
Mouse Wheel Down/Up does not available in the love.mouserele
Mouse Wheel Down/Up does not available in the love.mousereleased() function love:load() count = 1 end function love.draw() love.graphics.print(count,100,100) end function love.mousepressed(x, y, button) end function love.mousereleased(x, y, button) if button == "wd" then count = count +1 e...
- Wed Jan 01, 2014 12:52 pm
- Forum: General
- Topic: Although the Love.graphics.setColorMode had cancel from 0.90
- Replies: 3
- Views: 3752
Although the Love.graphics.setColorMode had cancel from 0.90
Although the Love.graphics.setColorMode had cancel from 0.90,which function is replace this?
- Fri Dec 27, 2013 1:07 pm
- Forum: General
- Topic: Using SciTE with LÖVE
- Replies: 48
- Views: 52252
Re: Using SciTE with LÖVE
Set command.go.subsystem.main.lua=1
the output windows will available
the output windows will available
- Fri Dec 27, 2013 8:45 am
- Forum: General
- Topic: Using SciTE with LÖVE
- Replies: 48
- Views: 52252
Re: Using SciTE with LÖVE
I am also worried this,THIS IS NOTHING IN THE OUTPUT WINDOW.
- Sat Nov 02, 2013 1:58 pm
- Forum: General
- Topic: [QT]about canvas:getImageData() and memory usage
- Replies: 2
- Views: 3904
Re: [QT]about canvas:getImageData() and memory usage
Sorry,too late for replying,thanks
- Tue Oct 29, 2013 2:33 pm
- Forum: General
- Topic: [QT]about canvas:getImageData() and memory usage
- Replies: 2
- Views: 3904
[QT]about canvas:getImageData() and memory usage
I use canvas:getImageData() in the function love.mousepressed(x,y,button),found the memory usage will increase too faster,it seems the memory will not be release. -- the image size is 1024*768,the app size is 1024*768 too function love.load() assert(love.graphics.isSupported('pixeleffect'), 'Pixel e...
- Sun May 13, 2012 2:03 pm
- Forum: General
- Topic: Easy GUI System v4
- Replies: 4
- Views: 5227