Torn Glory, deluxe edition
Some screens showing off deluxe and bump mapping on Cardo’s Torn Glory. The effect is intentionally overdone so that it’s evident in still images. I owe LordHavoc for guiding me through this implementation, and taking the time to point out defects and shortcomings in my approach. Thanks very much, LH.
var screenshots = new Array( "quake2world70", "quake2world71", "quake2world72", "quake2world73", "quake2world74", "quake2world75", "quake2world76", "quake2world77" );
var base = "http://jdolan.dyndns.org/jaydolan/tmp/torn_bump/";
var image, div = document.getElementById("Screenshots");
for(var i = 0; i < screenshots.length; i++){ thumb = document.createElement("img"); thumb.src = base + screenshots[i] + "-thumb.jpg"; thumb.style.padding = "2px"; link = document.createElement("a"); link.setAttribute("href", base + screenshots[i] + ".jpg"); link.setAttribute("rel", "lightbox"); link.className = "Thumb"; link.appendChild(thumb); div.appendChild(link); }