浏览代码

Examples: Clean up. (#23301)

Michael Herzog 3 年之前
父节点
当前提交
70faa0073c
共有 1 个文件被更改,包括 1 次插入9 次删除
  1. 1 9
      examples/webgl_gpgpu_protoplanet.html

+ 1 - 9
examples/webgl_gpgpu_protoplanet.html

@@ -5,11 +5,6 @@
 		<meta charset="utf-8">
 		<meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
 		<link type="text/css" rel="stylesheet" href="main.css">
-		<style>
-			#warning {
-				color: #ff0000;
-			}
-		</style>
 	</head>
 	<body>
 
@@ -255,11 +250,8 @@
 			import { OrbitControls } from './jsm/controls/OrbitControls.js';
 			import { GPUComputationRenderer } from './jsm/misc/GPUComputationRenderer.js';
 
-			const isIE = /Trident/i.test( navigator.userAgent );
-			const isEdge = /Edge/i.test( navigator.userAgent );
-
 			// Texture width for simulation (each texel is a debris particle)
-			const WIDTH = ( isIE || isEdge ) ? 4 : 64;
+			const WIDTH = 64;
 
 			let container, stats;
 			let camera, scene, renderer, geometry;