Search found 6 matches

by brucejs777
Sat Jun 17, 2017 5:04 pm
Forum: Support and Development
Topic: Debugging a crash?
Replies: 9
Views: 6685

Re: Debugging a crash?

mathacka wrote: Fri Jan 04, 2013 9:25 pm Make or go to your config.lua file and add

Code: Select all

t.console = true
Where does that config.lua file go if LOVE is the interpreter ?
by brucejs777
Sat Jun 17, 2017 4:52 pm
Forum: Support and Development
Topic: [SOLVED] Debugging using ZeroBrane Studio
Replies: 14
Views: 11821

Re: Debugging using ZeroBrane Studio

I'd like to get the LOVE debugging to work as well. Debug facility exist for good reason, and I've found it indispensable over the years for efficient and effective debuging. ZeroBrane can debug Lua programs when the interpreter is set to Lua. But it seems to lose it's debug facility when the interp...
by brucejs777
Wed Jun 14, 2017 7:04 pm
Forum: Support and Development
Topic: Can I make & color-cycle a palettized image in memory ?
Replies: 7
Views: 6845

Re: Can I make & color-cycle a palettized image in memory ?

Thanks MasterLee, I'll look at this. But for now, it's off to work !
by brucejs777
Wed Jun 14, 2017 4:17 pm
Forum: Support and Development
Topic: Can I make & color-cycle a palettized image in memory ?
Replies: 7
Views: 6845

Re: Can I make & color-cycle a palettized image in memory ?

Thanks Nixola; I'll have to go study shaders and then analyze this further. I'm looking at this tutorial: http://blogs.love2d.org/content/beginners-guide-shaders.
by brucejs777
Wed Jun 14, 2017 2:08 pm
Forum: Support and Development
Topic: Can I make & color-cycle a palettized image in memory ?
Replies: 7
Views: 6845

Re: Can I make & color-cycle a palettized image in memory ?

Thank you for the replies. I don't see any information on the internals of the ImageData structure, nor any calls to individual members like the palette. There is a format enum and PNG is one format. PNG as a standard does support indexed color modes. But I don't see any indication of actual impleme...
by brucejs777
Wed Jun 14, 2017 8:26 am
Forum: Support and Development
Topic: Can I make & color-cycle a palettized image in memory ?
Replies: 7
Views: 6845

Can I make & color-cycle a palettized image in memory ?

Hi, Can I make & color-cycle a palettized image in memory ? I want to build up an image computationally, not from a file. Then select one of several color palettes, and optionally color-cycle the image. The image would be a 2D array of integer pixels, and each of those 'color values' is an index...