![JAR search and dependency download from the Maven repository](/logo.png)
main.cesium.CustomShaderMode.kt Maven / Gradle / Ivy
The newest version!
// Automatically generated - do not modify!
@file:JsModule("cesium")
package cesium
/**
* An enum describing how the [CustomShader] will be added to the
* fragment shader. This determines how the shader interacts with the material.
* @see Online Documentation
*/
external enum class CustomShaderMode {
/**
* The custom shader will be used to modify the results of the material stage
* before lighting is applied.
*/
MODIFY_MATERIAL,
/**
* The custom shader will be used instead of the material stage. This is a hint
* to optimize out the material processing code.
*/
REPLACE_MATERIAL,
;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy