vue-cesium
Version:
Vue 3.x components for CesiumJS.
17 lines (16 loc) • 546 B
TypeScript
import VcBaseMaterialProperty from './VcBaseMaterialProperty';
export default class VcLineTrailMaterialProperty extends VcBaseMaterialProperty {
image: string;
color: Cesium.Color;
axisY: boolean;
time: number;
duration: number;
repeat: Cesium.Cartesian2;
loop: boolean;
lastTime: number;
_time: number;
constructor(options?: any);
getType(value: any): string;
getValue(time: Cesium.JulianDate, result?: any): VcLineTrailMaterialProperty;
equals(other: VcLineTrailMaterialProperty): boolean;
}