浏览代码

WebGPURenderer: Replace warn with info log.

Mugen87 4 年之前
父节点
当前提交
37ca608ede
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      examples/jsm/renderers/webgpu/WebGPURenderer.js

+ 1 - 1
examples/jsm/renderers/webgpu/WebGPURenderer.js

@@ -12,7 +12,7 @@ import WebGPUBackground from './WebGPUBackground.js';
 
 
 import { Frustum, Matrix4, Vector3, Color } from '../../../../build/three.module.js';
 import { Frustum, Matrix4, Vector3, Color } from '../../../../build/three.module.js';
 
 
-console.warn( 'THREE.WebGPURenderer: Modified Matrix4.makePerspective() and Matrix4.makeOrtographic() to work with WebGPU, see https://github.com/mrdoob/three.js/issues/20276.' );
+console.info( 'THREE.WebGPURenderer: Modified Matrix4.makePerspective() and Matrix4.makeOrtographic() to work with WebGPU, see https://github.com/mrdoob/three.js/issues/20276.' );
 
 
 Matrix4.prototype.makePerspective = function ( left, right, top, bottom, near, far ) {
 Matrix4.prototype.makePerspective = function ( left, right, top, bottom, near, far ) {