[ALPHA 1.1 BUG] Editing detail level sizes in Shape Editor (with fix) - RESOLVED
by Chris Robertson · in Torque 3D Professional · 11/26/2009 (7:21 pm) · 2 replies
There is a bug in the Shape Editor when using the Details window to edit detail level sizes. Only the first size change will work correctly. To fix, replace the ShapeEditor::doEditDetailSize function in tools/shapeEditor/scripts/shapeEditorActions.ed.cs with this:
function ShapeEditor::doEditDetailSize( %this, %oldSize, %newSize )
{
%action = %this.createAction( ActionEditDetailSize, "Edit detail size" );
%action.oldSize = %oldSize;
%action.newSize = %newSize;
%this.doAction( %action );
}
Full Sail QA&U Lab Intern