UNPKG

wdpapi

Version:

51WORLD WdpApi is a set of programming interfaces developed by JavaScript that is responsible for negotiating between web pages and cloud rendering platforms. Supported by 51Cloud rendering platform, it enables the users to create any HTML5 UI element on

43 lines (42 loc) 1.67 kB
import { EntityEidType, BasicInfoAtomType, TransformAtomType, VisibleAtomType, EntityOutlinerAtomType } from '../data-type'; /** * @interface EarthTilesEntityAtomType * @param {number} projectWorldIndex */ export interface EarthTilesEntityAtomType { projectWorldIndex: number; } export interface AssetAtomType { seedId: string; } /** * @interface EarthTilesType * @extends EntityEidType,Partial<AssetAtomType>,Partial<BasicInfoAtomType>,Partial<TransformAtomType>,Partial<VisibleAtomType>,Partial<EarthTilesEntityAtomType> */ export interface EarthTilesType extends EntityEidType, Partial<AssetAtomType>, Partial<BasicInfoAtomType>, Partial<TransformAtomType>, Partial<VisibleAtomType>, Partial<EarthTilesEntityAtomType>, Partial<EntityOutlinerAtomType> { } /** * @interface IGenerate * @param {Partial<AssetAtomType>} AssetAtom (optional) * @param {Partial<EarthTilesEntityAtomType>} AesEarthEntityAtom (optional) * @param {Partial<BasicInfoAtomType>} BasicInfoAtom (optional) * @param {Partial<TransformAtomType>} TransformAtom (optional) * @param {Partial<VisibleAtomType>} VisibleAtom (optional) */ export interface IGenerate { AssetAtom?: Partial<AssetAtomType>; AesEarthEntityAtom?: Partial<EarthTilesEntityAtomType>; BasicInfoAtom?: Partial<BasicInfoAtomType>; TransformAtom?: Partial<TransformAtomType>; VisibleAtom?: Partial<VisibleAtomType>; EntityOutlinerAtom?: Partial<EntityOutlinerAtomType>; } /** * @interface IAesTilesVisualAtom * @param {any} visualGroupToNodes * @param {Array<any>} hiddenLayers */ export interface IAesTilesVisualAtom { visualGroupToNodes: any; hiddenLayers: Array<any>; }