Skip to main content

Cesium 着色器渲染简单实现

效果展示

着色器简单实现

代码讲解

  • 通过primitive的方式来创建一个平面,然后通过自定义材质的方式来做平面渲染

    this._viewer.scene.primitives.add(new Cesium.Primitive({
              geometryInstances: new Cesium.GeometryInstance({ //渲染的几何体
                  geometry: geometry
              }),
              appearance: appearance, //外观
              asynchronous: false
          }));

    注册VIP

    如果已经是VIP,请直接登陆 登陆

发表回复