gpt4 book ai didi

javascript - ThreeJS高亮/投影仪

转载 作者:行者123 更新时间:2023-11-30 15:32:19 25 4
gpt4 key购买 nike

我将如何在平面顶部的 3d 对象下添加 2d Sprite 以显示我的对象被突出显示/选中?

此外,我该如何在不平坦的地形上执行此操作?

我附上了一张示例图片以更好地解释我的问题:

enter image description here

最佳答案

我不确定使用 sprite 是个好主意。

正如您所说的不平坦的地形,最好使用不平坦的东西。例如,具有 .alphaMap Material 的球体或圆柱体。

我们需要一些环状的东西来实现我们的选择效果。

enter image description here

假设您选择了球体,然后您可以从文件或从 Canvas 动态创建的纹理设置其 Material 的 alphaMap:

// alpha texture
var canvas = document.createElement("canvas");
canvas.width = 128;
canvas.height = 128;
var ctx = canvas.getContext("2d");
var gradient = ctx.createLinearGradient(0, 0, 0, 128);
gradient.addColorStop(0.35, "black");
gradient.addColorStop(0.475, "white");
gradient.addColorStop(0.525, "white");
gradient.addColorStop(0.65, "black");
ctx.fillStyle = gradient;
ctx.fillRect(0, 0, 128, 128);
var alphaTexture = new THREE.Texture(canvas);
alphaTexture.needsUpdate = true;

关于.alphaMap:

alpha 贴图是一种灰度纹理,可控制整个表面的不透明度(黑色:完全透明;白色:完全不透明)。默认为空。仅使用纹理的颜色,如果存在则忽略 alpha channel 。对于 RGB 和 RGBA 纹理,由于在 DXT 压缩和未压缩的 RGB 565 格式中为绿色提供了额外的精度,WebGL 渲染器将在对该纹理进行采样时使用绿色 channel 。仅亮度和亮度/alpha 纹理也将按预期工作。

这就是为什么我们只有黑色和白色的原因。

让我们创建一个最简单的 NPC 对象,它带有一个黄色圆环,表示我们的 NPC 已被选中:

var npc = function() {
var geom = new THREE.SphereGeometry(4, 4, 2);
geom.translate(0, 4, 0);
var mesh = new THREE.Mesh(geom, new THREE.MeshLambertMaterial({
color: Math.random() * 0xffffff
}));

// highlighter
geom.computeBoundingSphere();
var sphereGeom = new THREE.SphereGeometry(geom.boundingSphere.radius, 32, 24);
var sphereMat = new THREE.MeshBasicMaterial({
color: "yellow", // yellow ring
transparent: true, // to make our alphaMap work, we have to set this parameter to `true`
alphaMap: alphaTexture
});
var sphere = new THREE.Mesh(sphereGeom, sphereMat);
sphere.visible = false;
mesh.add(sphere);
mesh.userData.direction = new THREE.Vector3(Math.random() - 0.5, 0, Math.random() - 0.5).normalize();
mesh.userData.speed = Math.random() * 5 + 5;
mesh.position.set(
Math.random() * (worldWidth - 10) - (worldWidth - 10) * 0.5,
10,
Math.random() * (worldDepth - 10) - (worldDepth - 10) * 0.5
);
scene.add(mesh);
return mesh;
}

剩下的就没那么难了。我们需要一组 NPC,我们将检查它们的交集

var npcs = [];
for (var i = 0; i < 10; i++) {
npcs.push(npc());
}

然后在 mousedown 事件中我们将选择我们的 NPC(取自 interactive cubes 示例并根据我们的需要进行修改):

window.addEventListener('mousedown', onMouseDown, false);

function onMouseDown(event) {
if (event.button != 2) return;
mouse.x = (event.clientX / window.innerWidth) * 2 - 1;
mouse.y = -(event.clientY / window.innerHeight) * 2 + 1;

selector.setFromCamera( mouse, camera );
var intersects = selector.intersectObjects( npcs );
if ( intersects.length > 0 ) {
if ( INTERSECTED != intersects[ 0 ].object ) {
if ( INTERSECTED ) INTERSECTED.children[0].visible = INTERSECTED.selected;
INTERSECTED = intersects[ 0 ].object;
INTERSECTED.selected = INTERSECTED.children[0].visible;
INTERSECTED.children[0].visible = true;
}
} else {
if ( INTERSECTED ) INTERSECTED.children[0].visible = INTERSECTED.selected;
INTERSECTED = null;
}
}

jsfiddle例子。在这里您可以使用鼠标右键选择对象。

关于javascript - ThreeJS高亮/投影仪,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42049353/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com