@cesium/engine
Version:
CesiumJS is a JavaScript library for creating 3D globes and 2D maps in a web browser without a plugin.
27 lines (25 loc) • 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;