Merge pull request #1 from qrap/master

Typo fix README.md (comments in code example)
This commit is contained in:
Tim Anema 2014-10-26 09:45:23 -04:00
commit 8da68cc68c

View File

@ -33,9 +33,9 @@ local LightWorld = require "lib/light_world"
-- create light world
lightWorld = LightWorld({
drawBackground = drawBackground, //the callback to use for drawing the background
drawForground = drawForground, //the callback to use for drawing the foreground
ambient = {55,55,55}, //the general ambient light in the environment
drawBackground = drawBackground, --the callback to use for drawing the background
drawForground = drawForground, --the callback to use for drawing the foreground
ambient = {55,55,55}, --the general ambient light in the environment
})
function love.draw()