vue-cesium
Version:
Vue 3.x components for CesiumJS.
30 lines (26 loc) • 604 B
JavaScript
;
Object.defineProperty(exports, '__esModule', { value: true });
;
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;
}
}
exports["default"] = BaseMaterialProperty;
//# sourceMappingURL=VcBaseMaterialProperty.js.map