BufferGeometry
Object3D
Raycaster
Camera
CubeCamera
PerspectiveCamera
OrthographicCamera
StereoCamera
Clock
Curve
CurvePath
Path
Shape
ShapePath
ArrowHelper
AxesHelper
BoxHelper
Box3Helper
CameraHelper
DirectionalLightHelper
GridHelper
PolarGridHelper
HemisphereLightHelper
PlaneHelper
PointLightHelper
SkeletonHelper
SpotLightHelper
Light
PointLight
RectAreaLight
SpotLight
DirectionalLight
HemisphereLight
LightShadow
PointLightShadow
AnimationLoader
AudioLoader
BufferGeometryLoader
CompressedTextureLoader
CubeTextureLoader
DataTextureLoader
FileLoader
ImageBitmapLoader
ImageLoader
Loader
LoaderUtils
MaterialLoader
ObjectLoader
TextureLoader
LoadingManager
Material
Box2
Box3
Color
Cylindrical
Euler
Frustum
Interpolant
Line3
MathUtils
Matrix3
Matrix4
Plane
Quaternion
AnimationAction
AnimationClip
AnimationMixer
AnimationObjectGroup
AnimationUtils
keyframeTrack
PropertyBinding
PropertyMixer
BooleanKeyframeTrack
QuaternionKeyframeTrack
StringKeyframeTrack
Audio
AudioAnalyser
AudioContext
AudioListener
PositionalAudio

PropertyBinding.getValue()

PropertyBinding.getValue()是three.js中的一个方法,用于获取骨骼动画中的属性值。它接收一个对象作为参数,该对象包含动画时间和属性路径信息,然后返回该路径的当前属性值。

语法

PropertyBinding.getValue(time, cumulativeValue)
  • time: 动画时间,单位为秒。
  • cumulativeValue: 可选参数,一个可选的累计属性值。

参数

  • time: 动画时间,单位为秒。
  • cumulativeValue: 可选参数,一个可选的累计属性值。

返回值

  • 返回该路径的当前属性值。

示例

const time = 0.5; // 动画时间为0.5秒

const bone = skeleton.bones[0]; // 骨骼

const propertyPath = "rotation.z"; // 属性路径

const cumulativeValue = new THREE.Quaternion(); // 累计属性值

const propertyValue = new THREE.Quaternion(); // 当前属性值

const propertyBinding = new THREE.PropertyBinding(bone, propertyPath); // 创建属性绑定

propertyBinding.getValue(time, cumulativeValue, propertyValue); // 获取当前属性值

console.log(propertyValue); // 打印当前属性值

参考文献