Should not be recomputing the temporary path when settin gthe width and type.

master
Todd Stinson 2012-04-11 13:39:25 -07:00
parent ad541b486d
commit dfdbfdbed6
1 changed files with 0 additions and 2 deletions

View File

@ -229,7 +229,6 @@ void LLPathfindingPathTool::setCharacterWidth(F32 pCharacterWidth)
mFinalPathData.mCharacterWidth = pCharacterWidth;
mTempPathData.mCharacterWidth = pCharacterWidth;
computeFinalPath();
computeTempPath();
}
LLPathfindingPathTool::ECharacterType LLPathfindingPathTool::getCharacterType() const
@ -267,7 +266,6 @@ void LLPathfindingPathTool::setCharacterType(ECharacterType pCharacterType)
mFinalPathData.mCharacterType = characterType;
mTempPathData.mCharacterType = characterType;
computeFinalPath();
computeTempPath();
}
bool LLPathfindingPathTool::isRenderPath() const