EarthSDK
    正在准备搜索索引...

    函数 destroyObject

    • Destroys an object.

      参数

      • object: { [k: string]: any }

        The object to destroy.

      返回 undefined

      // How a texture would destroy itself.
      this.destroy = function () {
      _gl.deleteTexture(_texture);
      return Cesium.destroyObject(this);
      };

      DeveloperError