Search found 14 matches

by Zamp
Mon Feb 10, 2014 2:54 pm
Forum: Games and Creations
Topic: CAR - a funny racer game
Replies: 2
Views: 2788

Re: CAR - a funny racer game

Pretty fun game :nyu:
by Zamp
Mon Feb 10, 2014 12:15 pm
Forum: Support and Development
Topic: [Solved] Using io.read without blocking the game ?
Replies: 2
Views: 2383

Re: Using io.read without blocking the game ?

Cool, I will try that. Thanks :D

Edit: It works perfectly, thanks again !
by Zamp
Mon Feb 10, 2014 11:11 am
Forum: Support and Development
Topic: [Solved] Using io.read without blocking the game ?
Replies: 2
Views: 2383

[Solved] Using io.read without blocking the game ?

Hi lövers ! Do you know any way to use io.read() without blocking the game ? I have a console attached to my game and want the player to be able to enter commands in it while playing (to connect to a multiplayer server, change skin, etc... this will avoid me to overcharge my game with a UI layer). W...
by Zamp
Thu Jan 17, 2013 9:20 am
Forum: Support and Development
Topic: get canvas pixel ? store canvas on imageData ?
Replies: 2
Views: 2217

Re: get canvas pixel ? store canvas on imageData ?

A simple way

Code: Select all

canvas = love.graphics.newCanvas(width,height)
--do your stuff here
imgdata = canvas:getImageData()
imgdata:encode("render.png")
I don't know if that answers your question :ultraglee:
by Zamp
Wed Jan 16, 2013 4:16 pm
Forum: Support and Development
Topic: Looking for translators
Replies: 29
Views: 14195

Re: Looking for translators

French / Français "Bienvenue sur" "Version " "Vous attaquez " "Vous ne pouvez pas attaquer vos propres créatures" "Vous ne pouvez pas bouger aussi loin" "Vous déplacez votre mage en (6,7)" "Sélectionnez une case pour y déplacer votre m...
by Zamp
Thu Jan 10, 2013 6:06 am
Forum: Support and Development
Topic: Problem using accents
Replies: 4
Views: 2598

Re: Problem using accents

Thanks you guys for your answers, and Boolsheet for explaining this problem :)
by Zamp
Wed Jan 09, 2013 6:29 am
Forum: Support and Development
Topic: Problem using accents
Replies: 4
Views: 2598

Problem using accents

Hi lövers, I'm trying to build a gui and i have a problem using accented letters in user input. Considering this code, function love.load() text = "Type away! -- " end function love.keypressed(key, unicode) -- ignore non-printable characters (see http://www.ascii-code.com/) if unicode > 31...
by Zamp
Fri Dec 14, 2012 8:06 pm
Forum: Libraries and Tools
Topic: Cathode Lib - Canvas CRT Filter
Replies: 3
Views: 2702

Re: Cathode Lib - Canvas CRT Filter

Thank you guys :ultraglee:
by Zamp
Fri Dec 14, 2012 5:13 pm
Forum: Libraries and Tools
Topic: Cathode Lib - Canvas CRT Filter
Replies: 3
Views: 2702

Cathode Lib - Canvas CRT Filter

Hi lövers, Here is a snapshot of a library i'm working on, wich basically applies a filter to a canvas to make it look like an old CRT television. http://www.pixelarium.fr/img/cathode.png How it works : canvas = cathode(canvas, unit, modifier) canvas : a simple löve canvas unit : pixel size used for...