var fDesc=new Array(); fDesc[0] = "Space Engineers Toolbox is a comprehensive 'world' Save Editor for the 'Space Engineers' game. The primary focus of the Toolbox is to allow importing of images and 3D models, and editing of save game content.
Features:
- Edit Positions of everything.
- Drag-n-Drop to copy ships from one 'world' to another, to keep linked ships together.
- Export multiple items, ships/stations to .sbc file.
- Switch on/off player jetpack/dampeners.
- Reset player velocity.
- Convert between Large Ship and Station.
- Convert between light/heavy armor.
- Convert between angled/round armor.
- Reset ship velocity and spin to zero.
- Reverse ship velocity and spin."; 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 = ''; } }