var fDesc=new Array();
fDesc[0] = "Autodesk® Mudbox™ digital sculpting and texture painting software gives modelers and texture artists the freedom to create production-ready 3D digital artwork without worrying about the technical details.
Designed by professional artists from the game, film, television, and design industries, Mudbox combines an intuitive user interface with a powerful creative toolset of stencils and brushes for ultra-realistic 3D character modeling, engaging environments, and stylized props. Available for the Mac® and Microsoft® Windows® operating systems.
Main features:
- World-class 3D sculpting toolset—Fast, smooth, and accurate results
- Paint directly on 3D models—See results as you paint directly onto high-resolution models
- Paint multiple material channels—Powerful toolset for painting and viewing textures across multiple high-resolution maps
- Texture baking—Create accurate normal, displacement, and ambient occlusion maps
- Interactive display—Render quality results directly in the viewport
- 3D layers—Experiment with design concepts and easily make revisions.";
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 = '';
}
}