소스 검색

Adjust camera upper radius for particle systems with big coordinates

Popov72 5 년 전
부모
커밋
187d92cce2
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      nodeEditor/src/components/preview/previewManager.ts

+ 1 - 1
nodeEditor/src/components/preview/previewManager.ts

@@ -236,7 +236,7 @@ export class PreviewManager {
             }
             case NodeMaterialModes.Particle: {
                 this._camera.radius = this._globalState.previewType === PreviewType.Explosion ? 50 : 20;
-                this._camera.upperRadiusLimit = 500;
+                this._camera.upperRadiusLimit = 5000;
                 break;
             }
         }