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.setValue()

概述

PropertyBinding.setValue()是three.js中的一个方法,用于将指定对象中指定属性的值设定为指定的值。

语法

PropertyBinding.setValue( object, propertyPath, value );

参数

  • object:需要设定属性值的对象。
  • propertyPath:需要设定值的属性路径,可以是字符串或者数组。
  • value:需要设定的值。

示例

import * as THREE from 'three';

const position = new THREE.Vector3(1, 2, 3);
const obj = { position: position };
const propertyPath = 'position.x';

console.log(obj); // { position: Vector3 }

THREE.PropertyBinding.setValue(obj, propertyPath, 10);

console.log(obj); // { position: Vector3 { x: 10, y: 2, z: 3 } }

注意事项

  • propertyPath可以是字符串或者数组。如果是字符串,则可以使用点号连接每一级属性,例如'position.x'。如果是数组,则每个元素表示属性路径的一级,例如['position', 'x']
  • 如果属性路径中的任何一级不存在,则无法设定值。
  • 如果属性路径最后一级不是属性,而是一个函数或者方法,则无法设定值。

参考