Search found 14 matches
- Mon Feb 10, 2014 2:54 pm
- Forum: Games and Creations
- Topic: CAR - a funny racer game
- Replies: 2
- Views: 2870
Re: CAR - a funny racer game
Pretty fun game
- Mon Feb 10, 2014 12:15 pm
- Forum: Support and Development
- Topic: [Solved] Using io.read without blocking the game ?
- Replies: 2
- Views: 2483
Re: Using io.read without blocking the game ?
Cool, I will try that. Thanks
Edit: It works perfectly, thanks again !
Edit: It works perfectly, thanks again !
- Mon Feb 10, 2014 11:11 am
- Forum: Support and Development
- Topic: [Solved] Using io.read without blocking the game ?
- Replies: 2
- Views: 2483
[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...
- Thu Jan 17, 2013 9:20 am
- Forum: Support and Development
- Topic: get canvas pixel ? store canvas on imageData ?
- Replies: 2
- Views: 2333
Re: get canvas pixel ? store canvas on imageData ?
A simple way
I don't know if that answers your question
Code: Select all
canvas = love.graphics.newCanvas(width,height)
--do your stuff here
imgdata = canvas:getImageData()
imgdata:encode("render.png")
- Wed Jan 16, 2013 4:16 pm
- Forum: Support and Development
- Topic: Looking for translators
- Replies: 29
- Views: 14847
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...
- Wed Jan 16, 2013 1:04 pm
- Forum: Libraries and Tools
- Topic: Skybox & Perspective Transformations on Textures using GLSL!
- Replies: 7
- Views: 4250
- Thu Jan 10, 2013 6:06 am
- Forum: Support and Development
- Topic: Problem using accents
- Replies: 4
- Views: 2723
Re: Problem using accents
Thanks you guys for your answers, and Boolsheet for explaining this problem
- Wed Jan 09, 2013 6:29 am
- Forum: Support and Development
- Topic: Problem using accents
- Replies: 4
- Views: 2723
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...
- Fri Dec 14, 2012 8:06 pm
- Forum: Libraries and Tools
- Topic: Cathode Lib - Canvas CRT Filter
- Replies: 3
- Views: 2916
Re: Cathode Lib - Canvas CRT Filter
Thank you guys
- Fri Dec 14, 2012 5:13 pm
- Forum: Libraries and Tools
- Topic: Cathode Lib - Canvas CRT Filter
- Replies: 3
- Views: 2916
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...