Search found 13 matches

by smartazz
Sun Mar 07, 2010 10:03 am
Forum: General
Topic: LÖVE 0.6.2
Replies: 22
Views: 13386

Re: LÖVE 0.6.2

Hi guys, I just updated to 0.6.2. I've used the Efficient Tile-based Scrolling tutorial tutorial for a little something I'm working on. In 0.6.1 it looks and works as it should: http://www.gshdesign.com/misc/images/LOVE%20game/0.6.1.png Ignore the black space at the bottom :) In 0.6.2 it looks like ...
by smartazz
Fri Mar 05, 2010 8:24 am
Forum: Libraries and Tools
Topic: My Adventure Game Engine - Making Way For Adventure Engine 2
Replies: 367
Views: 148294

Re: My Zelda style adventure engine (DEMO NOW AVAILABLE)

Just saw the video on Youtube, looking pretty good ;)
by smartazz
Wed Mar 03, 2010 12:11 pm
Forum: Support and Development
Topic: HELP!!!:Images completely black
Replies: 4
Views: 2401

Re: HELP!!!:Images completely black

Try removing setColor from love.load and modifying love.draw like this: function love.draw() love.graphics.draw( img1, img_x, img_y ) love.graphics.setColor(0,0,0,255) love.graphics.print( "Mouse X: ".. mouse_x .. " Mouse Y: " .. mouse_y, 10, 20 ) love.graphics.setColor(255,255,2...