瀏覽代碼

Merge pull request #1750 from Azaezel/LODloss

short term LOD correction
Areloch 9 年之前
父節點
當前提交
ab68a19a8b
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      Engine/source/ts/tsShapeInstance.cpp

+ 1 - 1
Engine/source/ts/tsShapeInstance.cpp

@@ -643,7 +643,7 @@ S32 TSShapeInstance::setDetailFromDistance( const SceneRenderState *state, F32 s
    // 4:3 aspect ratio, we've changed the reference value
    // to 300 to be more compatible with legacy shapes.
    //
-   const F32 pixelScale = (state->getViewport().extent.x / state->getViewport().extent.y);
+   const F32 pixelScale = (state->getViewport().extent.x / state->getViewport().extent.y)*2;
 
    // This is legacy DTS support for older "multires" based
    // meshes.  The original crossbow weapon uses this.