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

Color.setStyle()

Color.setStyle()方法用于设置 Color 对象的颜色值。

语法

color.setStyle(style: string): Color

参数

  • style:一个表示颜色值的字符串,可以使用多种格式,如 #ff0000rgb(255, 0, 0)hsl(0, 100%, 50%)

返回值

返回一个 Color 对象,该对象的颜色值被设置为 style 参数指定的颜色。

用法示例

以下示例演示如何使用 Color.setStyle() 方法设置颜色值:

const color = new THREE.Color();
color.setStyle( '#ee0000' ); // 设置颜色为红色
const color = new THREE.Color();
color.setStyle( 'rgb(255, 0, 0)' ); // 设置颜色为红色
const color = new THREE.Color();
color.setStyle( 'hsl(0, 100%, 50%)' ); // 设置颜色为红色

注意事项

Color.setStyle() 方法会覆盖 Color 对象的旧颜色值,因此建议在使用该方法之前先将当前颜色值保存起来。

另外,不支持所有 CSS 颜色名称(如 redgreenblue 等),建议使用十六进制、RGB 或 HSL 格式表示颜色值。