import { EntityEidType, BasicInfoAtomType, TransformAtomType, VisibleAtomType, EntityFlagAtomType, EntityOutlinerAtomType } from '../data-type';
/**
 * @interface LightType
 * @extends EntityEidType,Partial<BasicInfoAtomType>,Partial<TransformAtomType>,Partial<VisibleAtomType>,Partial<EntityFlagAtomType>
 * @param {Partial<LightEntityAtomType>} lightStyle (optional)
 */
export interface LightType extends EntityEidType, Partial<BasicInfoAtomType>, Partial<TransformAtomType>, Partial<VisibleAtomType>, Partial<EntityFlagAtomType>, Partial<EntityOutlinerAtomType> {
    lightStyle?: Partial<LightEntityAtomType>;
}
/**
 * @interface LightEntityAtomType
 * @param {number} intensity
 * @param {string} color
 * @param {number} angle
 * @param {number} attenuation
 * @param {boolean} shadows
 * @param {boolean} haze
 * @param {number} haze_Intensity
 */
export interface LightEntityAtomType {
    intensity: number;
    color: string;
    angle: number;
    attenuation: number;
    shadows: boolean;
    haze: boolean;
    haze_Intensity: number;
}
/**
 * @interface IGenerate
 * @param {Partial<LightEntityAtomType>} LightEntityAtom (optional)
 * @param {Partial<BasicInfoAtomType>} BasicInfoAtom (optional)
 * @param {Partial<TransformAtomType>} TransformAtom (optional)
 * @param {Partial<VisibleAtomType>} VisibleAtom (optional)
 * @param {Partial<EntityFlagAtomType>} EntityFlagAtom (optional)
 */
export interface IGenerate {
    LightEntityAtom?: Partial<LightEntityAtomType>;
    BasicInfoAtom?: Partial<BasicInfoAtomType>;
    TransformAtom?: Partial<TransformAtomType>;
    VisibleAtom?: Partial<VisibleAtomType>;
    EntityFlagAtom?: Partial<EntityFlagAtomType>;
    EntityOutlinerAtom?: Partial<EntityOutlinerAtomType>;
}
