Game Development Community

[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 );
}

#1
06/13/2010 (7:25 pm)
Logged as TQA-365.
#2
08/02/2010 (5:29 pm)
Fixed in 1.1 Beta 2