LCCObject::setAlpha
Adjusts the transparency of the LCC model.
Can be used to adjust model transparency in real time.
Version Requirement
SDK v0.3.0+
Engine Support
Three.js / CesiumJS
API
LCCObject::setAlpha(value: number): void
Parameters
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
value | number | Yes | - | Transparency value, range [0, 1]. 0 = fully transparent, 1 = fully opaque. |
Return Value
void
Usage Example
// Set alpha to 0.1
lccObject.setAlpha(0.1);
// Set to fully opaque
lccObject.setAlpha(1);
Notes
- This method can be called synchronously immediately after
LCCRender.load().
Related APIs
LCCObject::setVisible()