1
0
forked from Rowland/EG
EG/Cesium-1.132/packages/engine/Source/Scene/Model/ModelAlphaOptions.js
2025-08-25 17:48:13 +08:00

27 lines
471 B
JavaScript

/**
* Options for configuring the {@link AlphaPipelineStage}
*
* @alias ModelAlphaOptions
* @constructor
*
* @private
*/
function ModelAlphaOptions() {
/**
* Which render pass will render the model.
*
* @type {Pass}
* @private
*/
this.pass = undefined;
/**
* Determines the alpha threshold below which fragments are discarded
*
* @type {number}
* @private
*/
this.alphaCutoff = undefined;
}
export default ModelAlphaOptions;