vue-cesium
Version:
Vue 3.x components for CesiumJS.
20 lines (19 loc) • 614 B
TypeScript
import VcBaseMaterialProperty from './VcBaseMaterialProperty';
export default class VcLineFlowMaterialProperty extends VcBaseMaterialProperty {
image: string;
color: Cesium.Color;
axisY: boolean;
mixt: boolean;
speed: number;
duration: number;
repeat: Cesium.Cartesian2;
image2: string;
color2: Cesium.Color;
hasImage2: boolean;
globalAlpha: boolean;
_time: number;
constructor(options?: any);
getType(value: any): string;
getValue(time: Cesium.JulianDate, result?: any): VcLineFlowMaterialProperty;
equals(other: VcLineFlowMaterialProperty): any;
}