mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-19 22:23:51 +00:00
Fix smooth tool and flatten tool. Default tool strength to 8.
This commit is contained in:
parent
54e13954e8
commit
60c0a25004
2 changed files with 7 additions and 7 deletions
|
@ -50,7 +50,7 @@ CSVRender::TerrainShapeMode::TerrainShapeMode (WorldspaceWidget *worldspaceWidge
|
|||
mIsEditing(false),
|
||||
mTotalDiffY(0),
|
||||
mShapeEditTool(0),
|
||||
mShapeEditToolStrength(0),
|
||||
mShapeEditToolStrength(8),
|
||||
mTargetHeight(0)
|
||||
{
|
||||
}
|
||||
|
@ -656,10 +656,9 @@ void CSVRender::TerrainShapeMode::smoothHeight(const CSMWorld::CellCoordinates&
|
|||
float averageHeight = (upHeight + downHeight + rightHeight + leftHeight +
|
||||
upAlteredHeight + downAlteredHeight + rightAlteredHeight + leftAlteredHeight) / 4;
|
||||
if ((thisHeight + thisAlteredHeight) != averageHeight) mAlteredCells.emplace_back(cellCoords);
|
||||
if (toolStrength > abs(thisHeight + thisAlteredHeight - averageHeight) && toolStrength > 8.0f) toolStrength =
|
||||
abs(thisHeight + thisAlteredHeight - averageHeight); //Cut down excessive changes
|
||||
if (thisHeight + thisAlteredHeight > averageHeight) alterHeight(cellCoords, inCellX, inCellY, -toolStrength);
|
||||
if (thisHeight + thisAlteredHeight < averageHeight) alterHeight(cellCoords, inCellX, inCellY, +toolStrength);
|
||||
if (toolStrength > abs(thisHeight + thisAlteredHeight - averageHeight)) toolStrength = abs(thisHeight + thisAlteredHeight - averageHeight);
|
||||
if (thisHeight + thisAlteredHeight > averageHeight) alterHeight(cellCoords, inCellX, inCellY, - toolStrength);
|
||||
if (thisHeight + thisAlteredHeight < averageHeight) alterHeight(cellCoords, inCellX, inCellY, + toolStrength);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -694,8 +693,8 @@ void CSVRender::TerrainShapeMode::flattenHeight(const CSMWorld::CellCoordinates&
|
|||
|
||||
if (toolStrength > abs(thisHeight - targetHeight) && toolStrength > 8.0f) toolStrength =
|
||||
abs(thisHeight - targetHeight); //Cut down excessive changes
|
||||
if (thisHeight + thisAlteredHeight > targetHeight) alterHeight(cellCoords, inCellX, inCellY, -toolStrength);
|
||||
if (thisHeight + thisAlteredHeight < targetHeight) alterHeight(cellCoords, inCellX, inCellY, +toolStrength);
|
||||
if (thisHeight + thisAlteredHeight > targetHeight) alterHeight(cellCoords, inCellX, inCellY, thisAlteredHeight - toolStrength);
|
||||
if (thisHeight + thisAlteredHeight < targetHeight) alterHeight(cellCoords, inCellX, inCellY, thisAlteredHeight + toolStrength);
|
||||
}
|
||||
|
||||
void CSVRender::TerrainShapeMode::updateKeyHeightValues(const CSMWorld::CellCoordinates& cellCoords, int inCellX, int inCellY, float* thisHeight,
|
||||
|
|
|
@ -118,6 +118,7 @@ CSVWidget::ShapeBrushWindow::ShapeBrushWindow(CSMDoc::Document& document, QWidge
|
|||
mToolStrengthSlider->setTickInterval(8);
|
||||
mToolStrengthSlider->setRange(8, 128);
|
||||
mToolStrengthSlider->setSingleStep(8);
|
||||
mToolStrengthSlider->setValue(8);
|
||||
|
||||
layoutMain->addWidget(mHorizontalGroupBox);
|
||||
layoutMain->addWidget(mSizeSliders);
|
||||
|
|
Loading…
Reference in a new issue