vue-cesium
Version:
Vue 3.x components for CesiumJS.
26 lines (24 loc) • 527 B
JavaScript
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
;