gpt4 book ai didi

Three.js - 如何更新 arrowHelper?

转载 作者:行者123 更新时间:2023-12-01 11:41:11 25 4
gpt4 key购买 nike

我正在尝试更新一个 arrowHelper。我试过操纵箭头对象线中的顶点,设置所有内容 dynamic = true等等,但我似乎能做到的唯一方法是删除旧线并绘制一条新线。有没有办法更新 arrowHelper?

最佳答案

因此,您无法通过更改用于创建对象的值,以通常的方式更新 arrowHelper 本身。

但是:您可以移动箭头的位置,这会移动其明显的起点,并且您可以给它一个新的方向和长度,从而移动其明显的终点。

这是如何做到的:

// new arrowHelper
var sourcePos = new THREE.Vector3(0, 0, 0);
var targetPos = new THREE.Vector3(0, 50, 0);
var direction = new THREE.Vector3().sub(targetPos, sourcePos);
var arrow = new THREE.ArrowHelper(direction.clone().normalize(), sourcePos, direction.length(), 0x00ff00);
scene.add(arrow);

// update the arrow
var newSourcePos = new THREE.Vector3(10, 10, 10);
var newTargetPos = new THREE.Vector3(60, 10, 10);
arrow.position.set(newSourcePos);
direction = new THREE.Vector3().sub(newTargetPos, newSourcePos);
arrow.setDirection(direction.normalize());
arrow.setLength(direction.length());

关于Three.js - 如何更新 arrowHelper?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20554946/

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