var fDesc=new Array();
fDesc[0] = "Mesh Viewer is a OGRE .mesh file type viewer for Windows XP & Vista. (.Net Framework 3.5 required)
Features
- It is automatically associate with .mesh files. It is as easy with just double click on any to open!
- It also find its own resources (materials, textures, skeletons etc...) on same folder, parent folder and sibling folders*
- Ogre Mesh File 1.2, 1.3, 1.4 support.
- Free Move camera via Mouse Drag and Keyboard;
- Zoom in, out with MouseScroll
- Different View Modes (Flat Shaded, Wireframe, Point Cloud)
- Show/Hide BoundingBox and Grids";
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 = '';
}
}