The only model I'm familiar with is diffuse lighting but this look way more complicated than that.

link|improve this question

78% accept rate
feedback

2 Answers

up vote 6 down vote accepted

Each square has a light level from 15 to 0. Each level is 20% less than the level above it. If a square contains a light source it gets the luminosity of that light source, otherwise it gets one less than the brightest neighbor.

Sunlight is special, it suffers no vertical attenuation.

link|improve this answer
1  
Just a thought, would adjacent blocks (blocks connected by a corner) be considered neighbors with this algorithm? – mazzzzz May 31 '11 at 23:45
feedback

While the answer by Loren is mostly correct, I’d like to add that the minecraftwiki has further information.

Sunlight and moonlight works by essentially making blocks with nothing but air and glass above glow with the current lightness (15 at day, 7 at night and something between at dusk/dawn)

The falloff described by Loren means that level 0 still has 0.8¹⁵·100% = 3.5% lightness (to quote my own edit in the minecraftwiki)

The smooth lighting intruduced with Beta 1.3 works by using the light values of the adjacent blocks to generate a gradient.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.