浏览代码

Updated builds.

Mr.doob 7 年之前
父节点
当前提交
e371d6e789
共有 3 个文件被更改,包括 9 次插入204 次删除
  1. 4 0
      build/three.js
  2. 1 204
      build/three.min.js
  3. 4 0
      build/three.module.js

+ 4 - 0
build/three.js

@@ -22313,6 +22313,8 @@
 
 			}
 
+			scene.onBeforeRender( _this, scene, camera, renderTarget );
+
 			_projScreenMatrix.multiplyMatrices( camera.projectionMatrix, camera.matrixWorldInverse );
 			_frustum.setFromMatrix( _projScreenMatrix );
 
@@ -22411,6 +22413,8 @@
 
 			state.setPolygonOffset( false );
 
+			scene.onAfterRender( _this, scene, camera, renderTarget );
+
 			if ( vr.enabled ) {
 
 				vr.submitFrame();

文件差异内容过多而无法显示
+ 1 - 204
build/three.min.js


+ 4 - 0
build/three.module.js

@@ -22307,6 +22307,8 @@ function WebGLRenderer( parameters ) {
 
 		}
 
+		scene.onBeforeRender( _this, scene, camera, renderTarget );
+
 		_projScreenMatrix.multiplyMatrices( camera.projectionMatrix, camera.matrixWorldInverse );
 		_frustum.setFromMatrix( _projScreenMatrix );
 
@@ -22405,6 +22407,8 @@ function WebGLRenderer( parameters ) {
 
 		state.setPolygonOffset( false );
 
+		scene.onAfterRender( _this, scene, camera, renderTarget );
+
 		if ( vr.enabled ) {
 
 			vr.submitFrame();

部分文件因为文件数量过多而无法显示