Search found 3 matches

by WarpEnterprises
Mon Jan 28, 2013 3:38 pm
Forum: General
Topic: Löve debugging with ZeroBrane Studio
Replies: 40
Views: 33876

Re: Löve debugging with ZeroBrane Studio

Thanks very much for ZBS, I have some points I can't get to work as I would expect: * when using Project->Start debugging, it always stops at the ...require("mobdebug").start()... line, although there is no breakpoint there. * I can't toggle a breakpoint while love is running - is this int...
by WarpEnterprises
Sat Jan 12, 2013 5:55 pm
Forum: General
Topic: Creating a textured font
Replies: 3
Views: 2538

Re: Creating a textured font

...I already suspected that it's not easy :( Sorry - with "print" I meant love.graphics.print I think I found a viable solution. First I tried love.graphics.newStencil -> this did not work for print as the whole square of each glyph is masked. Then I used Canvas to print the text (say in t...
by WarpEnterprises
Fri Jan 11, 2013 8:25 pm
Forum: General
Topic: Creating a textured font
Replies: 3
Views: 2538

Creating a textured font

Is it possible to create a textured font? I now it's possible by using ImageFont, but I was searching for a way to "print" to an image and manipulate the imagedata to get some texture where there is the glyph color set. But it seems that "print" only works to screen and not to an...