var fDesc=new Array();
fDesc[0] = "RPG Toolkit Engine features a powerful editor, a complete suite of the tools you need to put together your game, from creating characters and items, to building your game world with tiles and animations.
Features:
- Graphics: Native tile-based graphics and animations, both standard and isometric, and support for programmable image drawing and manipulation to create interfaces and custom graphical effects.
- Coding: Comes with its own simple coding language for creating your games and also with advanced features such as objects and threading for those with a little programming experience.
- Package & Distribute: Compile your game as an executable so people can download and get playing straight away, or deploy as part of an installation package.
- Open-Source: The Toolkit is made by game makers, for game makers. It will always remain free and open for talented programmers to improve upon even further.";
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 = '';
}
}