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

PropertyMixer.resetOriginalState()

resetOriginalState()方法是three.js中PropertyMixer类的一个方法,用于将动画属性的原始值重置为当前值。

语法

PropertyMixer.resetOriginalState()

参数

该方法没有任何参数。

描述

在执行动画时,属性的值通常会发生变化。如果需要在动画结束后将属性恢复到原始值,可以使用resetOriginalState()方法将属性的原始值重置为当前值,以便在将来的操作中使用。

示例

// 创建PropertyMixer
const mixer = new THREE.AnimationMixer(object);
const clip = THREE.AnimationClip.findByName(animations, 'animationName');
const action = mixer.clipAction(clip);

// 获取属性名为 "propertyName" 的 PropertyMixer
const mixerProperty = action._propertyMixerMap.get('propertyName');

// 重置属性的原始值
mixerProperty.resetOriginalState();

注意事项

  • 该方法只能在动画播放期间调用,否则会抛出错误。
  • 如果多次调用resetOriginalState()方法,则只有第一次调用会重置属性的原始值,而其他调用会被忽略。