美文网首页
Cesium 自定义Material 系列 (二十)

Cesium 自定义Material 系列 (二十)

作者: haibalai | 来源:发表于2022-04-05 01:09 被阅读0次

    对于缩放 圆效果 我们先定义一下他的interface, 方便使用的人知道他的调用参数

    export interface PMaterialZoom{

    color?: any,

    speed?: number,

    zoom?: boolean,

    }

    对于缩放 圆我们叫 MaterialZoom

    ```javascript

    import { MaterialProperty } from "./MaterialProperty";

    const defaultOption: PMaterialZoom = {

    color: new Cesium.Color(1.0, 0.0, 0.0, 0.7),

    speed: 1,

    zoom:true//true:放大,false缩小

    }

    //缩放效果

    export class MaterialZoom extends MaterialProperty {

    public _getType(option: PMaterialZoom) {

    // 由于参数需要动态变动,所以count有变动,认为是新着色器

    const { zoom=true } = option;

    returnMaterialTrailImage${zoom}

    }

    constructor(option = defaultOption) {

    super(MaterialZoom.prototype, defaultOption, option);

    }

    protected _getTranslucent(material: any) {

    return material.uniforms.color.alpha < 1.0;

    }

    protected getSource(option: PMaterialZoom): string {

    const { zoom=true } = option;

    let timeStr;

    if(zoom){

    timeStr = "float time = fract(czm_frameNumber * speed / 1000.0);";

    }else{

    timeStr = " float time = 1.0-fract(czm_frameNumber * speed / 1000.0);"

    }

    return `

    uniform vec4 color;

    uniform float speed;

    czm_material czm_getMaterial(czm_materialInput materialInput){

     更多参考 https://xiaozhuanlan.com/topic/3481295067

    相关文章

      网友评论

          本文标题:Cesium 自定义Material 系列 (二十)

          本文链接:https://www.haomeiwen.com/subject/lfiolrtx.html