var fDesc=new Array(); fDesc[0] = "The Complete Ghost Toast Game Design video training bundle will teach you to:
create a windowed or full screen application
work with OpenGL to render graphics on the screen
use the keyboard and mouse to control game objects
develop a scenegraph
use lights to change the look and feel of your games
work with materials, textures and UV coordinates
load, animate and render 3D models
develop a custom font rendering engine and
create a fully customizable Graphical User Interface (GUI)
develop a physics engine
perform real-time game timing for simulating gravity, wind, force etc
create a level editor for Ghost Toast"; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }