Search found 47 matches

by poorenglish
Wed Jun 15, 2016 2:25 pm
Forum: Support and Development
Topic: About visit the 2-D Arrays
Replies: 4
Views: 4832

Re: About visit the 2-D Arrays

thks very much.very clearly explanation.
by poorenglish
Wed Jun 15, 2016 2:13 pm
Forum: Support and Development
Topic: About visit the 2-D Arrays
Replies: 4
Views: 4832

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...
by poorenglish
Thu Jan 02, 2014 12:44 pm
Forum: General
Topic: Although the Love.graphics.setColorMode had cancel from 0.90
Replies: 3
Views: 3568

Re: Although the Love.graphics.setColorMode had cancel from

OK,thank you.
It seem be complex
by poorenglish
Wed Jan 01, 2014 1:27 pm
Forum: General
Topic: Mouse Wheel Down/Up does not available in the love.mouserele
Replies: 1
Views: 3211

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...
by poorenglish
Wed Jan 01, 2014 12:52 pm
Forum: General
Topic: Although the Love.graphics.setColorMode had cancel from 0.90
Replies: 3
Views: 3568

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?
by poorenglish
Fri Dec 27, 2013 1:07 pm
Forum: General
Topic: Using SciTE with LÖVE
Replies: 48
Views: 49830

Re: Using SciTE with LÖVE

Set command.go.subsystem.main.lua=1
the output windows will available
by poorenglish
Fri Dec 27, 2013 8:45 am
Forum: General
Topic: Using SciTE with LÖVE
Replies: 48
Views: 49830

Re: Using SciTE with LÖVE

I am also worried this,THIS IS NOTHING IN THE OUTPUT WINDOW.
by poorenglish
Sat Nov 02, 2013 1:58 pm
Forum: General
Topic: [QT]about canvas:getImageData() and memory usage
Replies: 2
Views: 3620

Re: [QT]about canvas:getImageData() and memory usage

Sorry,too late for replying,thanks
by poorenglish
Tue Oct 29, 2013 2:33 pm
Forum: General
Topic: [QT]about canvas:getImageData() and memory usage
Replies: 2
Views: 3620

[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...
by poorenglish
Sun May 13, 2012 2:03 pm
Forum: General
Topic: Easy GUI System v4
Replies: 4
Views: 5012

Re: Easy GUI System v4

cool