var fDesc=new Array();
fDesc[0] = "RouteBuilder is a visual railway editor with the ability to export created routes for the simulator BVE.
Main features:
- route building without knowing BVE commands
- intuitive 2D interface with zoom
- supporting all BVE2 features like curves, switches, height, pitch (not in V1.0), free objects, changing background images, sounds, fog, adhesion, accuracy, platforms, roofs, walls, dikes, signals
- multiple routes per project, driving both directions or parts of the route or on different tracks
- base object and trackwork library included for you to use freely (about how you can contribute, see below)
- you can add your own csv- and b3d-objects
- addon interface and addons. Read the manual and visit our developer forum to find out how to make addons
- clickable overview map as blueprint
- packager creating auto-install route setup programs which carry the logo
- BVE Track Sound Standard Compliant
- supporting the for responsible BVE Development";
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 = '';
}
}