@arcware-cloud/pixelstreaming-websdk
Version:
WebSDK for easy implementation of pixel streaming with Arcware Cloud Services. Heavily based on the '@epicgames-ps' library.
15 lines (14 loc) • 527 B
TypeScript
export declare class ArcwareLogoLoader {
arcwareLogoLoader: HTMLDivElement;
constructor();
private createArcwareLogoLoader;
private _imgEl?;
private _hostEl?;
/** Call this once after you create the wrapper/root that contains the SVG */
setHostElement(el: HTMLElement): void;
/** Swap the loader image at runtime; pass undefined to go back to SVG */
setImage(url?: string): void;
/** Enable/disable pulsing fade in ms; 0 disables */
setFade(ms?: number): void;
private getSvg;
}