var fDesc=new Array();
fDesc[0] = "fragMOTION is a 3D modeler used for the creation and animation of characters. The program loads and edits multiple motions in the same workspace. The built-in keyframe editor allows you to copy, paste and delete keyframes with ease. it gives you the ability to create your own plugins using C or Lua script.
Features:
- Fully integrated Lua script editor with context help, code completion and debugger.
- Create sprite images from 3D content.
- Load and edit multiple motions in the same workspace.
- Merge any supported model file and extract only the desired portions of that file.
- Paint textures directly on the surface of a model.
- Keyframe editor that allows you to copy, paste and delete keyframes with ease.
- Animate your character using Inverse Kinematics.
- View attached objects such as weapons and equipment.
- Create your own plugins using C or Lua script.
- Customizable user interface allows you to edit the menus and toolbar.
- Convenient splitter window allows you to customize the layout of your workspace.
- Keyboard shortcuts allow you to use tools without constantly switching modes.
- Set background images into the viewer as a frame of reference.
- Support for up to 4 weighting values per vertex.
- Create skeletons with up to 255 bones.
- Full undo/redo capability.";
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 = '';
}
}