You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

367 lines
29 KiB

<!DOCTYPE html><html lang="zh"><head>
<meta charset="utf-8">
<title>场景图</title>
<meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:site" content="@threejs">
<meta name="twitter:title" content="Three.js – 场景图">
<meta property="og:image" content="https://threejs.org/files/share.png">
<link rel="shortcut icon" href="/files/favicon_white.ico" media="(prefers-color-scheme: dark)">
<link rel="shortcut icon" href="/files/favicon.ico" media="(prefers-color-scheme: light)">
<link rel="stylesheet" href="/manual/resources/lesson.css">
<link rel="stylesheet" href="/manual/resources/lang.css">
<!-- Import maps polyfill -->
<!-- Remove this when import maps will be widely supported -->
<script async src="https://unpkg.com/es-module-shims@1.3.6/dist/es-module-shims.js"></script>
<script type="importmap">
{
"imports": {
"three": "../../build/three.module.js"
}
}
</script>
<link rel="stylesheet" href="/manual/zh/lang.css">
</head>
<body>
<div class="container">
<div class="lesson-title">
<h1>场景图</h1>
</div>
<div class="lesson">
<div class="lesson-main">
<p>本文是关于 three.js 系列文章的一部分。第一篇文章是 <a href="fundamentals.html">three.js 基础</a>。 如果你还没有读过它,建议先从那里开始。</p>
<p>Three.js 的核心可以说是它的场景图(scene graph)。场景图在 3D 引擎是一个图中节点的层次结构,其中每个节点代表了一个局部空间(local space)。</p>
<p><img src="../resources/images/scenegraph-generic.svg" align="center"></p>
<p>这有点抽象,所以我们试着举一些例子。</p>
<p>比如这样一个例子:太阳系、太阳、地球、月亮。</p>
<p><img src="../resources/images/scenegraph-solarsystem.svg" align="center"></p>
<p>地球绕着太阳转,月球绕着地球转,月球绕着地球转了一圈。从月球的角度看,它是在地球的 "局部空间 "中旋转。尽管它相对于太阳的运动是一些疯狂的像螺线图一样的曲线,但从月球的角度来看,它只需要关注自身围绕地球这个局部空间的旋转即可。</p>
<p></p><div class="threejs_diagram_container">
<iframe class="threejs_diagram " style="width: 400px; height: 300px;" src="/manual/foo/../resources/moon-orbit.html"></iframe>
</div>
<p></p>
<p>换个角度想,生活在地球上的你,不用思考关于地球自转和绕太阳公转的问题。你只是走路或开车或游泳或跑步,好像地球从未移动或者旋转。你走路、开车、游泳、跑步、生活在地球这个 "局部空间",即使相对于太阳来说,你是以每小时 1000 英里的速度绕着地球旋转,并以每小时 6 万 7 千英里的速度围绕太阳旋转。你在太阳系中的位置与头上的月亮相似,但你不必担心自己的位置。你只需担心你在地球 "局部空间 "中相对于地球的位置。</p>
<p>让我们一步一步来吧。想象一下,我们要做一个太阳、地球和月亮的图。我们先从太阳开始,只需制作一个球体,并将其置于原点。注意:我们用太阳、地球、月亮来演示如何使用场景图。当然,真正的太阳、地球和月亮使用的是物理学,但为了我们的目的,我们将用场景图来伪造它。</p>
<pre class="prettyprint showlinemods notranslate lang-js" translate="no">// 要更新旋转角度的对象数组
const objects = [];
// 一球多用
const radius = 1;
const widthSegments = 6;
const heightSegments = 6;
const sphereGeometry = new THREE.SphereGeometry(
radius,
widthSegments,
heightSegments
);
const sunMaterial = new THREE.MeshPhongMaterial({ emissive: 0xffff00 });
const sunMesh = new THREE.Mesh(sphereGeometry, sunMaterial);
sunMesh.scale.set(5, 5, 5); // 扩大太阳的大小
scene.add(sunMesh);
objects.push(sunMesh);
</pre>
<p>我们使用的是一个低多边形球体(low-polygon sphere)。赤道周围只有 6 个分段。这是为了便于观察旋转情况。</p>
<p>因为我们会重用同一个球体,所以我们将太阳网格(sunMesh)的比例设置为 5x。</p>
<p>我们还将 phong 材质的 <code class="notranslate" translate="no">emissive</code> 属性设置为黄色。phong 材质的放射属性(emissive)是基本上不受其他光照影响的固有颜色。光照会被添加到该颜色上。</p>
<p>我们也在场景的中心放置了一个点光源(point light)。稍后我们会介绍更多关于点光源的细节,但现在简单地说,点光源代表从一个点向各个方向发射的光源。</p>
<pre class="prettyprint showlinemods notranslate lang-js" translate="no">{
const color = 0xffffff;
const intensity = 3;
const light = new THREE.PointLight(color, intensity);
scene.add(light);
}
</pre>
<p>为了便于观察,我们要把摄像头放在原点的正上方向下看。最简单的方法是使用 <code class="notranslate" translate="no">lookAt</code> 函数。 <code class="notranslate" translate="no">lookAt</code> 函数让摄像机从它的位置“看向”我们传递 <code class="notranslate" translate="no">lookAt</code> 的位置。在这样做之前,我们需要告诉摄像机的顶部朝向哪个方向,或者说哪个方向是摄像机的 "上"。对于大多数情况来说,正 Y 是向上的就足够了,但是由于我们是直视下方,我们需要告诉摄像机正 Z 是向上的。</p>
<pre class="prettyprint showlinemods notranslate lang-js" translate="no">const camera = new THREE.PerspectiveCamera(fov, aspect, near, far);
camera.position.set(0, 50, 0);
camera.up.set(0, 0, 1);
camera.lookAt(0, 0, 0);
</pre>
<p>在渲染循环中,根据之前的例子进行了调整,我们用这段代码旋转 <code class="notranslate" translate="no">objects</code> 数组中的所有对象。</p>
<pre class="prettyprint showlinemods notranslate lang-js" translate="no">objects.forEach((obj) =&gt; {
obj.rotation.y = time;
});
</pre>
<p>由于我们将 <code class="notranslate" translate="no">sunMesh</code> 添加到 <code class="notranslate" translate="no">objects</code> 数组中,它将会旋转。</p>
<p></p><div translate="no" class="threejs_example_container notranslate">
<div><iframe class="threejs_example notranslate" translate="no" style=" " src="/manual/examples/resources/editor.html?url=/manual/examples/scenegraph-sun.html"></iframe></div>
<a class="threejs_center" href="/manual/examples/scenegraph-sun.html" target="_blank">点击此处在新标签页中打开</a>
</div>
<p></p>
<p>现在让我们把地球(earth)也加进去。</p>
<pre class="prettyprint showlinemods notranslate lang-js" translate="no">const earthMaterial = new THREE.MeshPhongMaterial({
color: 0x2233ff,
emissive: 0x112244,
});
const earthMesh = new THREE.Mesh(sphereGeometry, earthMaterial);
earthMesh.position.x = 10;
scene.add(earthMesh);
objects.push(earthMesh);
</pre>
<p>我们做的材料是蓝色的,但是我们给它加了少量的放射蓝(<em>emissive</em> blue),这样它就会在我们的黑色背景下显示出来。</p>
<p>我们使用相同的 <code class="notranslate" translate="no">sphereGeometry</code> 和新的蓝色的 <code class="notranslate" translate="no">earthMaterial</code> 来制作一个 <code class="notranslate" translate="no">earthMesh</code> 。我们将其定位在太阳的左边 10 个单位,并将其添加到场景中。由于我们将它添加到了我们的 <code class="notranslate" translate="no">objects</code> 数组中,所以它也会旋转。</p>
<p></p><div translate="no" class="threejs_example_container notranslate">
<div><iframe class="threejs_example notranslate" translate="no" style=" " src="/manual/examples/resources/editor.html?url=/manual/examples/scenegraph-sun-earth.html"></iframe></div>
<a class="threejs_center" href="/manual/examples/scenegraph-sun-earth.html" target="_blank">点击此处在新标签页中打开</a>
</div>
<p></p>
<p>你可以看到太阳和地球都在自转,但地球并没有绕着太阳转。让我们把地球变成太阳的子节点吧。</p>
<pre class="prettyprint showlinemods notranslate lang-js" translate="no">-scene.add(earthMesh);
+sunMesh.add(earthMesh);
</pre>
<p>然后...</p>
<p></p><div translate="no" class="threejs_example_container notranslate">
<div><iframe class="threejs_example notranslate" translate="no" style=" " src="/manual/examples/resources/editor.html?url=/manual/examples/scenegraph-sun-earth-orbit.html"></iframe></div>
<a class="threejs_center" href="/manual/examples/scenegraph-sun-earth-orbit.html" target="_blank">点击此处在新标签页中打开</a>
</div>
<p></p>
<p>到底发生了什么?为什么地球和太阳一样大?为什么离太阳这么远?我居然要把摄像机从 50 单位移到 150 单位以上才能看到地球。</p>
<p>我们让 <code class="notranslate" translate="no">earthMesh</code> 成为 <code class="notranslate" translate="no">sunMesh</code> 的一个子节点。<code class="notranslate" translate="no">sunMesh.scale.set(5, 5, 5)</code> 将其比例设置为 5x。这意味着 <code class="notranslate" translate="no">sunMeshs</code> 的局部空间是 5 倍大。这表示地球现在大了 5 倍,它与太阳的距离 ( <code class="notranslate" translate="no">earthMesh.position.x = 10</code> ) 也是 5 倍。</p>
<p>目前,我们的场景图是这样的:</p>
<p><img src="../resources/images/scenegraph-sun-earth.svg" align="center"></p>
<p>为了解决这个问题,我们添加一个空的场景图节点。我们将把太阳和地球都作为该节点的子节点。</p>
<pre class="prettyprint showlinemods notranslate lang-js" translate="no">+const solarSystem = new THREE.Object3D();
+scene.add(solarSystem);
+objects.push(solarSystem);
const sunMaterial = new THREE.MeshPhongMaterial({emissive: 0xFFFF00});
const sunMesh = new THREE.Mesh(sphereGeometry, sunMaterial);
sunMesh.scale.set(5, 5, 5);
-scene.add(sunMesh);
+solarSystem.add(sunMesh);
objects.push(sunMesh);
const earthMaterial = new THREE.MeshPhongMaterial({color: 0x2233FF, emissive: 0x112244});
const earthMesh = new THREE.Mesh(sphereGeometry, earthMaterial);
earthMesh.position.x = 10;
-sunMesh.add(earthMesh);
+solarSystem.add(earthMesh);
objects.push(earthMesh);
</pre>
<p>这里我们创建了一个 <a href="/docs/#api/zh/core/Object3D"><code class="notranslate" translate="no">Object3D</code></a> 。像 <a href="/docs/#api/zh/objects/Mesh"><code class="notranslate" translate="no">Mesh</code></a> 一样,它也是场景图中的一个节点,但与 <a href="/docs/#api/zh/objects/Mesh"><code class="notranslate" translate="no">Mesh</code></a> 不同的是,它没有材质(material)和几何体(geometry)。它只是代表一个局部空间。</p>
<p>我们的新场景图是这样的:</p>
<p><img src="../resources/images/scenegraph-sun-earth-fixed.svg" align="center"></p>
<p><code class="notranslate" translate="no">sunMesh</code><code class="notranslate" translate="no">earthMesh</code> 都是 <code class="notranslate" translate="no">solarSystem</code> 的子网格。三者都在旋转,现在因为 <code class="notranslate" translate="no">earthMesh</code> 不是 <code class="notranslate" translate="no">sunMesh</code> 的子网格,所以不再按 5 倍比例缩放。</p>
<p></p><div translate="no" class="threejs_example_container notranslate">
<div><iframe class="threejs_example notranslate" translate="no" style=" " src="/manual/examples/resources/editor.html?url=/manual/examples/scenegraph-sun-earth-orbit-fixed.html"></iframe></div>
<a class="threejs_center" href="/manual/examples/scenegraph-sun-earth-orbit-fixed.html" target="_blank">点击此处在新标签页中打开</a>
</div>
<p></p>
<p>好多了。地球比太阳小,而且绕着太阳转的同时自转。</p>
<p>延续同样的模式,我们再加一个月亮。</p>
<pre class="prettyprint showlinemods notranslate lang-js" translate="no">+const earthOrbit = new THREE.Object3D();
+earthOrbit.position.x = 10;
+solarSystem.add(earthOrbit);
+objects.push(earthOrbit);
const earthMaterial = new THREE.MeshPhongMaterial({color: 0x2233FF, emissive: 0x112244});
const earthMesh = new THREE.Mesh(sphereGeometry, earthMaterial);
-earthMesh.position.x = 10; // 注意,这个偏移量已经在它的父对象THREE.Object3D "earthOrbit "中设置了。
-solarSystem.add(earthMesh);
+earthOrbit.add(earthMesh);
objects.push(earthMesh);
+const moonOrbit = new THREE.Object3D();
+moonOrbit.position.x = 2;
+earthOrbit.add(moonOrbit);
+const moonMaterial = new THREE.MeshPhongMaterial({color: 0x888888, emissive: 0x222222});
+const moonMesh = new THREE.Mesh(sphereGeometry, moonMaterial);
+moonMesh.scale.set(.5, .5, .5);
+moonOrbit.add(moonMesh);
+objects.push(moonMesh);
</pre>
<p>我们再次添加了更多的隐形场景图节点。首先是一个名为 <code class="notranslate" translate="no">earthOrbit</code><a href="/docs/#api/zh/core/Object3D"><code class="notranslate" translate="no">Object3D</code></a> ,并将新增 <code class="notranslate" translate="no">earthMesh</code><code class="notranslate" translate="no">moonOrbit</code> 都添加到其中。然后,我们把 <code class="notranslate" translate="no">moonMesh</code> 添加到 <code class="notranslate" translate="no">moonOrbit</code> 上。</p>
<p>新的场景图是这样的:</p>
<p><img src="../resources/images/scenegraph-sun-earth-moon.svg" align="center"></p>
<p>就是这样</p>
<p></p><div translate="no" class="threejs_example_container notranslate">
<div><iframe class="threejs_example notranslate" translate="no" style=" " src="/manual/examples/resources/editor.html?url=/manual/examples/scenegraph-sun-earth-moon.html"></iframe></div>
<a class="threejs_center" href="/manual/examples/scenegraph-sun-earth-moon.html" target="_blank">点击此处在新标签页中打开</a>
</div>
<p></p>
<p>你可以看到月亮照着本文开头所提到的螺线图形式旋转,但我们不必手动计算它。我们只需要设置我们的场景图来为我们做这件事。</p>
<p>绘制一些东西来可视化场景图中的节点通常很有用。Three.js 有一些很有帮助的,ummmm, 帮助工具可以用来 ummmm,...帮助我们实现这个功能。</p>
<p>其中一个叫做 <a href="/docs/#api/zh/helpers/AxesHelper"><code class="notranslate" translate="no">AxesHelper</code></a> 。它画了 3 条线,分别代表本地的
<span style="color:red">X</span>
<span style="color:green">Y</span>, 以及
<span style="color:blue">Z</span>轴。让我们为我们创建的每个节点都加上一个。</p>
<pre class="prettyprint showlinemods notranslate lang-js" translate="no">// 为每个节点添加一个AxesHelper
objects.forEach((node) =&gt; {
const axes = new THREE.AxesHelper();
axes.material.depthTest = false;
axes.renderOrder = 1;
node.add(axes);
});
</pre>
<p>在我们的例子中,我们希望轴即使在球体内部也能出现。要做到这一点,我们将其材质(material)的 <code class="notranslate" translate="no">depthTest</code> 属性设置为 false,这意味着它们不会检查其是否在其他东西后面进行绘制。我们还将它们的 <code class="notranslate" translate="no">renderOrder</code> 属性设置为 1(默认值为 0),这样它们就会在所有球体之后被绘制。否则一个球体可能会画在它们上面,把它们遮住。</p>
<p></p><div translate="no" class="threejs_example_container notranslate">
<div><iframe class="threejs_example notranslate" translate="no" style=" " src="/manual/examples/resources/editor.html?url=/manual/examples/scenegraph-sun-earth-moon-axes.html"></iframe></div>
<a class="threejs_center" href="/manual/examples/scenegraph-sun-earth-moon-axes.html" target="_blank">点击此处在新标签页中打开</a>
</div>
<p></p>
<p>我们可以看到<span style="color:red">x (红色)</span>
<span style="color:blue">z (蓝色)</span>轴。由于我们是直视下方,而每个物体只是围绕 y 轴旋转,所以我们看不到<span style="color:green">y (绿色)</span>轴。</p>
<p>可能很难看到其中一些轴,因为有 2 对重叠的轴。<code class="notranslate" translate="no">sunMesh</code><code class="notranslate" translate="no">solarSystem</code> 都在同一位置。同样地,<code class="notranslate" translate="no">earthMesh</code><code class="notranslate" translate="no">earthOrbit</code> 也在同一位置。让我们添加一些简单的控制方法,让我们可以为每个节点打开/关闭它们。同时,我们还可以添加另一个名为 <a href="/docs/#api/zh/helpers/GridHelper"><code class="notranslate" translate="no">GridHelper</code></a> 的帮助工具。它可以在 X,Z 平面上创建一个 2D 网格。默认情况下,网格是 10x10 单位。</p>
<p>我们还将使用<a href="https://github.com/georgealways/lil-gui">lil-gui</a>,这是一个在 three.js 项目中非常流行的 UI 库。lil-gui 会获取一个对象和该对象上的属性名,并根据属性的类型自动生成一个 UI 来操作该属性。</p>
<p>我们要为每个节点制作一个 <a href="/docs/#api/zh/helpers/GridHelper"><code class="notranslate" translate="no">GridHelper</code></a> 和一个 <a href="/docs/#api/zh/helpers/AxesHelper"><code class="notranslate" translate="no">AxesHelper</code></a>。我们需要为每个节点添加一个标签,所以我们将删除旧的循环,转而调用一些函数为每个节点添加帮助程序。</p>
<pre class="prettyprint showlinemods notranslate lang-js" translate="no">-// 为每个节点添加一个AxesHelper
-objects.forEach((node) =&gt; {
- const axes = new THREE.AxesHelper();
- axes.material.depthTest = false;
- axes.renderOrder = 1;
- node.add(axes);
-});
+function makeAxisGrid(node, label, units) {
+ const helper = new AxisGridHelper(node, units);
+ gui.add(helper, 'visible').name(label);
+}
+
+makeAxisGrid(solarSystem, 'solarSystem', 25);
+makeAxisGrid(sunMesh, 'sunMesh');
+makeAxisGrid(earthOrbit, 'earthOrbit');
+makeAxisGrid(earthMesh, 'earthMesh');
+makeAxisGrid(moonOrbit, 'moonOrbit');
+makeAxisGrid(moonMesh, 'moonMesh');
</pre>
<p><code class="notranslate" translate="no">makeAxisGrid</code> 创建了一个 <code class="notranslate" translate="no">AxisGridHelper</code> 类,这是一个我们将创建的让 lil-gui 满意的类。就像上面说的那样,lil-gui 会自动地生成一个 UI 来操作某个对象的命名属性。它将根据属性的类型创建不同的 UI。我们希望它创建一个复选框,所以我们需要指定一个 <code class="notranslate" translate="no">bool</code> 属性。但是,我们希望坐标轴和网格都能基于一个单一的属性出现/消失,所以我们将创建一个类,其有一个属性绑定了 getter 和 setter。这样我们就可以让 lil-gui 认为它在操作一个单一的属性,但是在内部我们可以为一个节点设置 <a href="/docs/#api/zh/helpers/AxesHelper"><code class="notranslate" translate="no">AxesHelper</code></a><a href="/docs/#api/zh/helpers/GridHelper"><code class="notranslate" translate="no">GridHelper</code></a> 的可见(visible)属性。</p>
<pre class="prettyprint showlinemods notranslate lang-js" translate="no">// 打开/关闭轴和网格的可见性
// lil-gui 要求一个返回类型为bool型的属性
// 来创建一个复选框,所以我们为 `visible`属性
// 绑定了一个setter 和 getter。 从而让lil-gui
// 去操作该属性.
class AxisGridHelper {
constructor(node, units = 10) {
const axes = new THREE.AxesHelper();
axes.material.depthTest = false;
axes.renderOrder = 2; // 在网格渲染之后再渲染
node.add(axes);
const grid = new THREE.GridHelper(units, units);
grid.material.depthTest = false;
grid.renderOrder = 1;
node.add(grid);
this.grid = grid;
this.axes = axes;
this.visible = false;
}
get visible() {
return this._visible;
}
set visible(v) {
this._visible = v;
this.grid.visible = v;
this.axes.visible = v;
}
}
</pre>
<p>需要注意的是,我们将 <a href="/docs/#api/zh/helpers/AxesHelper"><code class="notranslate" translate="no">AxesHelper</code></a><code class="notranslate" translate="no">renderOrder</code> 设置为 2,将<a href="/docs/#api/zh/helpers/GridHelper"><code class="notranslate" translate="no">GridHelper</code></a>的设置为 1,这样轴就会在网格之后绘制。否则网格可能会覆盖轴。</p>
<p></p><div translate="no" class="threejs_example_container notranslate">
<div><iframe class="threejs_example notranslate" translate="no" style=" " src="/manual/examples/resources/editor.html?url=/manual/examples/scenegraph-sun-earth-moon-axes-grids.html"></iframe></div>
<a class="threejs_center" href="/manual/examples/scenegraph-sun-earth-moon-axes-grids.html" target="_blank">点击此处在新标签页中打开</a>
</div>
<p></p>
<p>选中 <code class="notranslate" translate="no">solarSystem</code>,你会看到地球是如何像我们上面设定的那样,从中心出发正好 10 个单位。你可以看到地球是如何处在 <code class="notranslate" translate="no">solarSystem</code> 的局部空间(<em>local space</em>)内。同样地,如果你打开 <code class="notranslate" translate="no">earthOrbit</code>,你会看到月球距离 <code class="notranslate" translate="no">earthOrbit</code> 的局部空间(<em>local space</em>)的中心正好 2 个单位。</p>
<p>再举几个场景图的例子。在一个简单的游戏世界中,一辆汽车可能有这样的场景图。</p>
<p><img src="../resources/images/scenegraph-car.svg" align="center"></p>
<p>如果你移动车体,所有的轮子都会随之移动。如果你想让车身和轮子分开弹跳,你可以将车身和轮子作为代表汽车框架的框架(frame)节点的子节点。</p>
<p>另一个例子是游戏世界中的人类。</p>
<p><img src="../resources/images/scenegraph-human.svg" align="center"></p>
<p>你可以看到对于人类来说,场景图会变得很复杂。事实上,上面的场景图已经被简化了。例如,你可以把它扩展到覆盖每根手指(至少还有 28 个节点)和每个脚趾(还有 28 个节点),再加上脸部和下巴、眼睛,也许还有更多。</p>
<p>我们来做一个稍微复杂的场景图。我们来做一辆坦克。坦克将有 6 个轮子和一个炮塔。坦克会沿着一条路径行驶。会有一个球体在周围移动,坦克会瞄准球体。</p>
<p>这是场景图。网格(mesh)的颜色为绿色,<a href="/docs/#api/zh/core/Object3D"><code class="notranslate" translate="no">Object3D</code></a> 为蓝色,灯光(light)为金色,摄像机(camera)为紫色。其中一台摄像机没有被添加进场景图。</p>
<div class="threejs_center"><img src="../resources/images/scenegraph-tank.svg" style="width: 800px;"></div>
<p>在代码中查看这些节点的设置。</p>
<p>对于目标,也就是坦克要瞄准的东西,有一个 <code class="notranslate" translate="no">targetOrbit</code> ( <a href="/docs/#api/zh/core/Object3D"><code class="notranslate" translate="no">Object3D</code></a> ),它的旋转方式与上面的 <code class="notranslate" translate="no">earthOrbit</code> 一样。<code class="notranslate" translate="no">targetElevation</code> ( <a href="/docs/#api/zh/core/Object3D"><code class="notranslate" translate="no">Object3D</code></a> )是 <code class="notranslate" translate="no">targetOrbit</code> 的一个子节点,它提供了一个从 <code class="notranslate" translate="no">targetOrbit</code> 的偏移量和一个基准高度。它的子节点是另一个叫做 <code class="notranslate" translate="no">targetBob</code><a href="/docs/#api/zh/core/Object3D"><code class="notranslate" translate="no">Object3D</code></a>,它只是相对于 <code class="notranslate" translate="no">targetElevation</code> 上下摆动。最后是 <code class="notranslate" translate="no">targetMesh</code>,它只是一个立方体,我们可以旋转并改变它的颜色。</p>
<pre class="prettyprint showlinemods notranslate lang-js" translate="no">// 移动目标
targetOrbit.rotation.y = time * 0.27;
targetBob.position.y = Math.sin(time * 2) * 4;
targetMesh.rotation.x = time * 7;
targetMesh.rotation.y = time * 13;
targetMaterial.emissive.setHSL((time * 10) % 1, 1, 0.25);
targetMaterial.color.setHSL((time * 10) % 1, 1, 0.25);
</pre>
<p>对于坦克来说,有一个叫做 <code class="notranslate" translate="no">tank</code><a href="/docs/#api/zh/core/Object3D"><code class="notranslate" translate="no">Object3D</code></a>,用来移动它下面的所有子节点。代码中使用了 <a href="/docs/#api/zh/extras/curves/SplineCurve"><code class="notranslate" translate="no">SplineCurve</code></a>,其接受用来定义曲线的一系列坐标为参数。0.0 是曲线的起始点,1.0 是曲线的终点。它首先获取当前的位置,也就是放置坦克的位置。然后获取在曲线稍远处的位置,并使用 <a href="/docs/#api/zh/core/Object3D.lookAt"><code class="notranslate" translate="no">Object3D.lookAt</code></a> 将坦克指向该方向。</p>
<pre class="prettyprint showlinemods notranslate lang-js" translate="no">const tankPosition = new THREE.Vector2();
const tankTarget = new THREE.Vector2();
...
// 移动坦克
const tankTime = time * .05;
curve.getPointAt(tankTime % 1, tankPosition);
curve.getPointAt((tankTime + 0.01) % 1, tankTarget);
tank.position.set(tankPosition.x, 0, tankPosition.y);
tank.lookAt(tankTarget.x, 0, tankTarget.y);
</pre>
<p>由于坦克顶部的炮塔是坦克的子节点,所以它会自动移动。如果要将它指向目标,我们只需要获取目标的世界位置(world position),然后再次使用 <a href="/docs/#api/zh/core/Object3D.lookAt"><code class="notranslate" translate="no">Object3D.lookAt</code></a></p>
<pre class="prettyprint showlinemods notranslate lang-js" translate="no">const targetPosition = new THREE.Vector3();
...
// 炮台瞄准目标
targetMesh.getWorldPosition(targetPosition);
turretPivot.lookAt(targetPosition);
</pre>
<p>有一个 <code class="notranslate" translate="no">turretCamera</code>,它是 <code class="notranslate" translate="no">turretMesh</code> 的一个子节点,所以它会随着炮塔上下移动和旋转。我们让它瞄准目标。</p>
<pre class="prettyprint showlinemods notranslate lang-js" translate="no">// 让turretCamera瞄准目标
turretCamera.lookAt(targetPosition);
</pre>
<p>还有一个 <code class="notranslate" translate="no">targetCameraPivot</code>,它是 <code class="notranslate" translate="no">targetBob</code> 的子节点,所以它随着目标漂浮。我们将其瞄准坦克。它的目的是让 <code class="notranslate" translate="no">targetCamera</code> 与目标本身偏移。如果我们把摄像头变成 <code class="notranslate" translate="no">targetBob</code> 的子节点,并且只瞄准摄像头本身,那么它就会在目标内部。</p>
<pre class="prettyprint showlinemods notranslate lang-js" translate="no">// 让targetCameraPivot看向坦克
tank.getWorldPosition(targetPosition);
targetCameraPivot.lookAt(targetPosition);
</pre>
<p>最后,我们旋转所有的车轮</p>
<pre class="prettyprint showlinemods notranslate lang-js" translate="no">wheelMeshes.forEach((obj) =&gt; {
obj.rotation.x = time * 3;
});
</pre>
<p>对于摄像机,我们在初始化时设置了一个包含所有 4 台摄像机的数组,并附有描述。</p>
<pre class="prettyprint showlinemods notranslate lang-js" translate="no">const cameras = [
{ cam: camera, desc: "detached camera" },
{ cam: turretCamera, desc: "on turret looking at target" },
{ cam: targetCamera, desc: "near target looking at tank" },
{ cam: tankCamera, desc: "above back of tank" },
];
const infoElem = document.querySelector("#info");
</pre>
<p>并在渲染时循环使用我们的摄像机。</p>
<pre class="prettyprint showlinemods notranslate lang-js" translate="no">const camera = cameras[(time * 0.25) % cameras.length | 0];
infoElem.textContent = camera.desc;
</pre>
<p></p><div translate="no" class="threejs_example_container notranslate">
<div><iframe class="threejs_example notranslate" translate="no" style=" " src="/manual/examples/resources/editor.html?url=/manual/examples/scenegraph-tank.html"></iframe></div>
<a class="threejs_center" href="/manual/examples/scenegraph-tank.html" target="_blank">点击此处在新标签页中打开</a>
</div>
<p></p>
<p>我希望这能让你对场景图的工作原理以及你可能使用它们的方法有一些了解。制作 <a href="/docs/#api/zh/core/Object3D"><code class="notranslate" translate="no">Object3D</code></a> 节点,并将东西作为它们的子节点,是使用好 three.js 这样的 3D 引擎的重要一步。通常来说,让东西按照你想要的方式移动和旋转可能需要一些复杂的数学来。例如,如果没有场景图,计算月亮的运动或者汽车的轮子相对于车身的位置会非常复杂,但是使用场景图就会变得简单很多。</p>
<p><a href="materials.html">接下来,我们会介绍一下材质</a>.</p>
</div>
</div>
</div>
<script src="/manual/resources/prettify.js"></script>
<script src="/manual/resources/lesson.js"></script>
</body></html>