UNPKG

vue-cesium

Version:
26 lines (24 loc) 527 B
"use strict"; class BaseMaterialProperty { constructor(options = {}) { this.options = options; this._definitionChanged = new Cesium.Event(); } get isConstant() { return true; } get definitionChanged() { return this._definitionChanged; } getType(parameter) { return null; } getValue(context, defaultValue = {}) { return defaultValue; } equals(other) { return this === other; } } export { BaseMaterialProperty as default }; //# sourceMappingURL=VcBaseMaterialProperty.mjs.map