PostWorldOriginOffset now sets the location to the local 0.0f, 0.0f, 0.0f
This commit is contained in:
parent
3a554aed12
commit
23fa58c4aa
|
@ -695,10 +695,10 @@ void AVegetationManager::OnLevelRemovedFromWorld(ULevel* InLevel, UWorld* InWorl
|
|||
FreeTileCache(InLevel);
|
||||
}
|
||||
|
||||
void AVegetationManager::PostWorldOriginOffset(UWorld*, FIntVector, FIntVector InDstOrigin)
|
||||
void AVegetationManager::PostWorldOriginOffset(UWorld*, FIntVector, FIntVector)
|
||||
{
|
||||
TRACE_CPUPROFILER_EVENT_SCOPE(AVegetationManager::PostWorldOriginOffset);
|
||||
InactivePoolTransform.SetLocation(FVector(InDstOrigin.X, InDstOrigin.Y, InDstOrigin.Z));
|
||||
InactivePoolTransform.SetLocation(FVector(0.0f, 0.0f, 0.0f));
|
||||
}
|
||||
|
||||
/********************************************************************************/
|
||||
|
|
Loading…
Reference in New Issue