import { EntityEidType, BasicInfoAtomType, TransformAtomType, VisibleAtomType, EntityFlagAtomType, EntityOutlinerAtomType } from '../data-type';
/**
 * @interface Text3DType
 * @extends EntityEidType,Partial<BasicInfoAtomType>,Partial<TransformAtomType>,Partial<VisibleAtomType>,Partial<EntityFlagAtomType>
 * @param {Partial<Text3DEntityAtomType>} text3DStyle (optional)
 */
export interface Text3DType extends EntityEidType, Partial<BasicInfoAtomType>, Partial<TransformAtomType>, Partial<VisibleAtomType>, Partial<EntityFlagAtomType>, Partial<EntityOutlinerAtomType> {
    text3DStyle?: Partial<Text3DEntityAtomType>;
}
/**
 * @interface Text3DEntityAtomType
 * @param {string} text
 * @param {string} color
 * @param {string} type
 * @param {number} outline
 * @param {boolean} portrait
 * @param {number} space
 * @param {number} bounce
 * @param {boolean} faceToCamera
 */
export interface Text3DEntityAtomType {
    text: string;
    color: string;
    type: string;
    outline: number;
    portrait: boolean;
    space: number;
    bounce: number;
    faceToCamera: boolean;
}
/**
 * @interface IGenerate
 * @param {Partial<Text3DEntityAtomType>} Text3DEntityAtom (optional)
 * @param {Partial<BasicInfoAtomType>} BasicInfoAtom (optional)
 * @param {Partial<TransformAtomType>} TransformAtom (optional)
 * @param {Partial<VisibleAtomType>} VisibleAtom (optional)
 * @param {Partial<EntityFlagAtomType>} EntityFlagAtom (optional)
 */
export interface IGenerate {
    Text3DEntityAtom?: Partial<Text3DEntityAtomType>;
    BasicInfoAtom?: Partial<BasicInfoAtomType>;
    TransformAtom?: Partial<TransformAtomType>;
    VisibleAtom?: Partial<VisibleAtomType>;
    EntityFlagAtom?: Partial<EntityFlagAtomType>;
    EntityOutlinerAtom?: Partial<EntityOutlinerAtomType>;
}
